Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit d2b02c8

Browse files
fix(theme): restore use of unqoute in mixins
Removal of `unquote($color)` broke runtime them style generations.
1 parent 4112f51 commit d2b02c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/list/demoBasicUsage/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div flex-gt-sm="50" flex>
44

5-
<md-toolbar layout="row" class="md-hue-2">
5+
<md-toolbar layout="row" class="md-hue-3">
66
<div class="md-toolbar-tools">
77
<span>Normal</span>
88
</div>
@@ -74,7 +74,7 @@ <h3> {{ phone.number }} </h3>
7474

7575
<div flex-gt-sm="50" flex>
7676

77-
<md-toolbar layout="row" class="md-hue-2">
77+
<md-toolbar layout="row" class="md-hue-3">
7878
<div class="md-toolbar-tools">
7979
<span>Dense</span>
8080
</div>

src/core/style/mixins.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// won't be set on the most browsers.
2323
@each $pseudo in $pseudos {
2424
&#{$pseudo} {
25-
color: $color;
25+
color: unquote($color);
2626
}
2727
}
2828
}

0 commit comments

Comments
 (0)