Skip to content

Commit 9d210b1

Browse files
fix(scss): replace undefined \/\ with literals for sass-embedded 1.97.3 compat
1 parent 3c47d58 commit 9d210b1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

_sass/custom/custom.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
border: 1px solid $border-color;
88
border-radius: 999px;
99
background-color: $body-background-color;
10-
box-shadow: 0 1px 2px rgba($black, 0.05);
10+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
1111
white-space: nowrap;
1212
}
1313

@@ -39,9 +39,9 @@
3939
}
4040

4141
.feast-theme-switcher__button.is-active {
42-
color: $white;
42+
color: #fff;
4343
background-color: $btn-primary-color;
44-
box-shadow: 0 1px 2px rgba($black, 0.2);
44+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
4545
}
4646

4747
@media (max-width: 50rem) {

0 commit comments

Comments
 (0)