@@ -3,13 +3,13 @@ import { NavLink } from "react-router-dom";
3
3
4
4
export const SidebarContainer = styled . div `
5
5
width: 260px;
6
- background-color: #f5f5f5 ;
6
+ background-color: var(--bg-color) !important ;
7
7
padding: 1rem;
8
8
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
9
9
border-radius: 4px;
10
10
position: relative;
11
11
overflow-y: auto;
12
-
12
+ border-right: 1px solid #ddd;
13
13
@media (max-width: 768px) {
14
14
width: 100%;
15
15
height: auto;
@@ -21,7 +21,7 @@ export const SidebarTitle = styled.h2`
21
21
font-size: 1.2rem;
22
22
font-weight: 500;
23
23
margin-bottom: 1rem;
24
- color: #333 ;
24
+ color: var(--text-color) !important ;
25
25
` ;
26
26
27
27
export const SidebarList = styled . ul `
@@ -41,19 +41,19 @@ export const SidebarLink = styled(NavLink)`
41
41
border-radius: 4px;
42
42
font-size: 0.95rem;
43
43
font-weight: 600;
44
- color: #717171 ;
44
+ color: var(--text-color) !important ;
45
45
transition: background-color 0.3s, color 0.3s;
46
46
47
47
&.active {
48
- background-color: #e0e0e0 ;
49
- color: #1b2540 ;
48
+ background-color: var(--active-bg-color) !important ;
49
+ color: var(--active-text-color) !important ;
50
50
font-weight: 600;
51
51
border-left: 2.5px solid #19c6c7;
52
52
}
53
53
54
54
&:hover {
55
- background-color: #e0e0e0 ;
56
- color: #050c40 ;
55
+ background-color: var(--hover-bg-color) !important ;
56
+ color: var(--hover-text-color) !important ;
57
57
text-decoration: underline;
58
58
}
59
59
` ;
@@ -81,7 +81,7 @@ export const HelperText = styled.div`
81
81
color: #333;
82
82
83
83
a {
84
- color: #19c6c7;
84
+ color: #19c6c7 !important ;
85
85
text-decoration: none;
86
86
87
87
&:hover {
@@ -98,4 +98,4 @@ export const DividerLine = styled.div`
98
98
height: 1px;
99
99
background-color: #ddd;
100
100
margin: 7rem 0 1rem 0;
101
- ` ;
101
+ ` ;
0 commit comments