Skip to content

Commit a23886d

Browse files
committed
fix: Resolve SyntaxError in sidebar.py (removed invalid CSS comments)
1 parent 06e3333 commit a23886d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/components/sidebar.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def toggle_sidebar():
246246
styles={
247247
"container": {
248248
"padding": "0",
249-
"background-color": "transparent", /* Fix White Box */
249+
"background-color": "transparent",
250250
"border-radius": "0px"
251251
},
252252
"icon": {
@@ -261,7 +261,7 @@ def toggle_sidebar():
261261
"border-radius": "8px",
262262
"color": "#94A3B8",
263263
"font-weight": "500",
264-
"background": "transparent", /* Ensure link bg is transparent */
264+
"background": "transparent",
265265
},
266266
"nav-link-selected": {
267267
"background": "linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05))",

0 commit comments

Comments
 (0)