diff --git a/src/App.css b/src/App.css index e69de29..464d0c1 100644 --- a/src/App.css +++ b/src/App.css @@ -0,0 +1,6 @@ +/* Global Card Styling */ +.ant-card { + border-radius: 12px !important; + box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.07) !important; + margin-bottom: 24px !important; +} diff --git a/src/index.css b/src/index.css index 30d122f..875f836 100644 --- a/src/index.css +++ b/src/index.css @@ -18,4 +18,38 @@ html body { margin: 0; height: 100vh; +} + +/* Custom Orange Sidebar Menu Styles */ +.custom-orange-menu.ant-menu-dark .ant-menu-item-selected { + background-color: rgba(255, 255, 255, 0.2) !important; + color: white !important; +} + +.custom-orange-menu.ant-menu-dark .ant-menu-item-selected::after { + border-right-color: white !important; +} + +.custom-orange-menu.ant-menu-dark .ant-menu-item:hover, +.custom-orange-menu.ant-menu-dark .ant-menu-submenu-title:hover { + background-color: rgba(255, 255, 255, 0.15) !important; + color: white !important; +} + +.custom-orange-menu.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title { + color: white !important; +} + +.custom-orange-menu.ant-menu-dark.ant-menu-inline .ant-menu-sub { + background: rgba(0, 0, 0, 0.2) !important; +} + +.custom-orange-menu.ant-menu-dark .ant-menu-item, +.custom-orange-menu.ant-menu-dark .ant-menu-submenu-title { + color: rgba(255, 255, 255, 0.9) !important; +} + +.custom-orange-menu.ant-menu-dark .ant-menu-item-active, +.custom-orange-menu.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title { + color: white !important; } \ No newline at end of file diff --git a/src/layout/LayoutMenu.jsx b/src/layout/LayoutMenu.jsx index 1c7caeb..f813883 100644 --- a/src/layout/LayoutMenu.jsx +++ b/src/layout/LayoutMenu.jsx @@ -180,12 +180,18 @@ const LayoutMenu = () => { return (
); }; diff --git a/src/layout/LayoutSidebar.jsx b/src/layout/LayoutSidebar.jsx index 4589344..8f4eddb 100644 --- a/src/layout/LayoutSidebar.jsx +++ b/src/layout/LayoutSidebar.jsx @@ -6,7 +6,8 @@ import LayoutMenu from './LayoutMenu'; const { Sider } = Layout; const LayoutSidebar = () => { return ( -