Skip to content

Commit fc69726

Browse files
committed
Fix sass warning during build
1 parent ef01926 commit fc69726

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ui/styles/_modal.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use 'sass:color';
2+
13
.modal {
24

35
position: fixed;
@@ -9,7 +11,7 @@
911
bottom: 0;
1012
left: 0;
1113
padding: 0 $gutter;
12-
background: rgba(darken($black, 6%), .9);
14+
background: rgba(color.adjust($black, $lightness: -6%), .9);
1315
pointer-events: none;
1416
opacity: 0;
1517
z-index: 3;

0 commit comments

Comments
 (0)