UX: modernize the header drop shadow (#27843)

This commit is contained in:
Jordan Vidrine 2024-07-10 14:29:36 -05:00 committed by GitHub
parent c780e764d0
commit 7439fc73b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -140,7 +140,7 @@
--shadow-menu-panel: 0 8px 12px rgba(0, 0, 0, #{$shadow-opacity-menu-panel});
--shadow-card: 0 4px 14px rgba(0, 0, 0, #{$shadow-opacity-card});
--shadow-dropdown: 0 2px 12px 0 rgba(0, 0, 0, #{$shadow-opacity-dropdown});
--shadow-header: 0 2px 4px -1px rgba(0, 0, 0, #{$shadow-opacity-header});
--shadow-header: 0 0 0 1px var(--primary-low);
--shadow-footer-nav: 0 0 2px 0 rgba(0, 0, 0, #{$shadow-opacity-footer-nav});
--shadow-focus-danger: 0 0 6px 0 var(--danger);

View File

@ -178,5 +178,4 @@ $shadow-opacity-composer: dark-light-choose(0.12, 0.35) !default;
$shadow-opacity-menu-panel: dark-light-choose(0.15, 0.35) !default;
$shadow-opacity-card: dark-light-choose(0.15, 0.5) !default;
$shadow-opacity-dropdown: dark-light-choose(0.1, 0.25) !default;
$shadow-opacity-header: dark-light-choose(0.25, 0.45) !default;
$shadow-opacity-footer-nav: dark-light-choose(0.2, 0.4) !default;