udpated bg of widget shadow

the drop shadow behind widgets when moved around is now light blue and the corners are round.
This commit is contained in:
2025-07-22 12:56:44 -07:00
parent 37ebd3d478
commit ab03d43aff
3 changed files with 33 additions and 18 deletions
+14 -1
View File
@@ -1,4 +1,4 @@
import { useState } from 'react' import { Global, css } from "@emotion/react";
import Header from './components/layout/Header/Header.jsx'; import Header from './components/layout/Header/Header.jsx';
import Sidebar from './components/layout/Sidebar/Sidebar.jsx'; import Sidebar from './components/layout/Sidebar/Sidebar.jsx';
import Canvas from './components/layout/Canvas/Canvas.jsx'; import Canvas from './components/layout/Canvas/Canvas.jsx';
@@ -9,6 +9,18 @@ function App() {
const styles = recipe(); const styles = recipe();
return ( return (
<>
<Global // change the background color of widget shadow when moving
styles={css`
.react-grid-placeholder {
background: #c0d2e3ff !important;
border-color: #a9b6c2ff !important;
box-shadow: 0 0 10px #c0d2e3ff !important;
opacity: 1 !important;
border-radius: 5px;
}
`}
/>
<Grid css={styles} <Grid css={styles}
templateRows="1fr 11fr" templateRows="1fr 11fr"
templateColumns="1fr 20fr" templateColumns="1fr 20fr"
@@ -25,6 +37,7 @@ function App() {
<Canvas /> <Canvas />
</GridItem> </GridItem>
</Grid> </Grid>
</>
); );
} }
@@ -26,6 +26,7 @@ export default function WidgetCanvas() {
}; };
return ( return (
<chakra.div height="100%" width="100%">
<ResponsiveGridLayout <ResponsiveGridLayout
className="layout" className="layout"
layout={layout} layout={layout}
@@ -42,5 +43,6 @@ export default function WidgetCanvas() {
</chakra.div> </chakra.div>
))} ))}
</ResponsiveGridLayout> </ResponsiveGridLayout>
</chakra.div>
); );
} }
+1 -1
View File
@@ -103,7 +103,7 @@ const config = defineConfig({
slotRecipes: { slotRecipes: {
sidebar: sidebarRecipe, sidebar: sidebarRecipe,
widget: widgetRecipe, widget: widgetRecipe,
} },
}, },
}); });