@@ -3,13 +3,13 @@ import { NavLink } from "react-router-dom";
33
44export const SidebarContainer = styled . div `
55 width: 260px;
6- background-color: #f5f5f5 ;
6+ background-color: var(--bg-color) !important ;
77 padding: 1rem;
88 box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
99 border-radius: 4px;
1010 position: relative;
1111 overflow-y: auto;
12-
12+ border-right: 1px solid #ddd;
1313 @media (max-width: 768px) {
1414 width: 100%;
1515 height: auto;
@@ -21,7 +21,7 @@ export const SidebarTitle = styled.h2`
2121 font-size: 1.2rem;
2222 font-weight: 500;
2323 margin-bottom: 1rem;
24- color: #333 ;
24+ color: var(--text-color) !important ;
2525` ;
2626
2727export const SidebarList = styled . ul `
@@ -41,19 +41,19 @@ export const SidebarLink = styled(NavLink)`
4141 border-radius: 4px;
4242 font-size: 0.95rem;
4343 font-weight: 600;
44- color: #717171 ;
44+ color: var(--text-color) !important ;
4545 transition: background-color 0.3s, color 0.3s;
4646
4747 &.active {
48- background-color: #e0e0e0 ;
49- color: #1b2540 ;
48+ background-color: var(--active-bg-color) !important ;
49+ color: var(--active-text-color) !important ;
5050 font-weight: 600;
5151 border-left: 2.5px solid #19c6c7;
5252 }
5353
5454 &:hover {
55- background-color: #e0e0e0 ;
56- color: #050c40 ;
55+ background-color: var(--hover-bg-color) !important ;
56+ color: var(--hover-text-color) !important ;
5757 text-decoration: underline;
5858 }
5959` ;
@@ -81,7 +81,7 @@ export const HelperText = styled.div`
8181 color: #333;
8282
8383 a {
84- color: #19c6c7;
84+ color: #19c6c7 !important ;
8585 text-decoration: none;
8686
8787 &:hover {
@@ -98,4 +98,4 @@ export const DividerLine = styled.div`
9898 height: 1px;
9999 background-color: #ddd;
100100 margin: 7rem 0 1rem 0;
101- ` ;
101+ ` ;
0 commit comments