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:
juanatsap
2025-11-19 15:41:36 +00:00
parent 5dc5a98269
commit df77a269c0
2 changed files with 162 additions and 2 deletions
+2 -2
View File
@@ -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 */