Skip to content

Commit

Permalink
fix: add workaround for sass issue sass/node-sass/issues/2251
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Feb 12, 2020
1 parent 0852738 commit 2be518e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/material-css-vars/src/lib/_mat-lib-overwrites.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@

@mixin mat-css-other-overwrites {
.mat-button-focus-overlay {
background: rgba(var(--palette-foreground-base), 1);
background: RGBA(var(--palette-foreground-base), 1);
}
.mat-checkbox .mat-ripple-element {
background-color: rgb(var(--palette-foreground-base));
background-color: RGB(var(--palette-foreground-base));
}
}

0 comments on commit 2be518e

Please sign in to comment.