fix: Make icon borders completely transparent in dark theme
- Changed from rgba(255,255,255,0.05) to 'transparent' - Previous attempt used WHITE transparent which was still visible - Now borders are rgba(0,0,0,0) - completely invisible - Verified with Playwright test showing transparent borders - All icons (OBS, LIV Golf, etc.) now have no visible borders
This commit is contained in:
@@ -86,7 +86,7 @@
|
||||
/* Borders & Dividers */
|
||||
--border-color: #404040;
|
||||
--border-light: #333333;
|
||||
--icon-border: rgba(255, 255, 255, 0.05); /* Nearly transparent border for icons in dark theme */
|
||||
--icon-border: transparent; /* Invisible border for icons in dark theme */
|
||||
--item-separator: rgba(255, 255, 255, 0.05); /* Very subtle separator in dark theme */
|
||||
|
||||
/* Shadows */
|
||||
@@ -137,7 +137,7 @@
|
||||
/* Borders & Dividers */
|
||||
--border-color: #404040;
|
||||
--border-light: #333333;
|
||||
--icon-border: rgba(255, 255, 255, 0.05); /* Nearly transparent border for icons in dark theme */
|
||||
--icon-border: transparent; /* Invisible border for icons in dark theme */
|
||||
--item-separator: rgba(255, 255, 255, 0.05); /* Very subtle separator in dark theme */
|
||||
|
||||
/* Shadows */
|
||||
|
||||
Reference in New Issue
Block a user