fix: Improve light theme shadow for smoother appearance

Updated --shadow-lg in light theme from harsh 2px 2px 9px to soft 0 4px 16px with reduced opacity (0.2). This provides a more professional, diffuse shadow that matches the quality of the dark theme.
This commit is contained in:
juanatsap
2025-11-20 16:28:36 +00:00
parent 7b60fdcf9c
commit 0682a0bea7
+1 -1
View File
@@ -46,7 +46,7 @@
/* Shadows */
--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
--shadow-md: 0 2px 8px rgba(0, 0, 0, 0.15);
--shadow-lg: 2px 2px 9px rgba(0, 0, 0, 0.5);
--shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.2);
/* Interactive Elements */
--button-bg: transparent;