Refactor color mixing to use the new Sass color module
This commit is contained in:
parent
629f06d0e7
commit
ebbc80be77
|
|
@ -1,3 +1,5 @@
|
|||
@use 'sass:color';
|
||||
|
||||
$breakpoint: 50rem;
|
||||
$primary: #206bc4;
|
||||
$border: #eeeeee;
|
||||
|
|
@ -483,7 +485,7 @@ $border-color: #e0e0e0;
|
|||
height: 2rem;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: mix($dark, #fff, 75%);
|
||||
color: color.mix($dark, #fff, 75%);
|
||||
|
||||
svg {
|
||||
width: 1.25rem;
|
||||
|
|
|
|||
Loading…
Reference in New Issue