Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(navdrawer): add transparency to background color #10521

Merged
merged 2 commits into from Nov 17, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -152,7 +152,6 @@

/// @param {Map} $theme - The theme used to style the component.
/// @requires {mixin} igx-css-vars
/// @requires $overlay-color
/// @requires rem
/// @requires var-get
@mixin igx-navdrawer($theme) {
Expand Down Expand Up @@ -266,7 +265,7 @@

%overlay {
opacity: 1;
background: igx-color(map.get($theme, 'palette'), 'grays');
background: igx-color(map.get($theme, 'palette'), 'grays', 500, .54);
transition: opacity, visibility;
transition-duration: .25s, .25s;
transition-timing-function: ease-in, step-start;
Expand Down