Make dark mode shadows visible.
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Adrian Simmons 2021-11-15 16:27:25 +00:00
parent 7e064053f9
commit 595a5e8145

View File

@ -10,13 +10,13 @@
&.dark { &.dark {
// Even darker shadows for dark mode // Even darker shadows for dark mode
--shadow-xs: 0 1px 3px hsla(var(--grey-100-hsl),.12), --shadow-xs: 0 1px 3px var(--white),
0 1px 2px hsla(var(--grey-100-hsl), .24); 0 1px 2px var(--white);
--shadow-sm: 0 3px 6px hsla(var(--grey-100-hsl), .12), --shadow-sm: 0 3px 6px var(--white),
0 2px 4px hsla(var(--grey-100-hsl), .10); 0 2px 4px var(--white);
--shadow-md: 0 10px 20px hsla(var(--grey-100-hsl), .12), --shadow-md: 0 10px 20px var(--white),
0 3px 6px hsla(var(--grey-100-hsl), .08); 0 3px 6px var(--white);
--shadow-lg: 0 15px 25px hsla(var(--grey-100-hsl), .12), --shadow-lg: 0 15px 25px var(--white),
0 5px 10px hsla(var(--grey-100-hsl), .05); 0 5px 10px var(--white);
} }
} }