diff options
Diffstat (limited to 'src/objects/_status-indicator.scss')
-rw-r--r-- | src/objects/_status-indicator.scss | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/objects/_status-indicator.scss b/src/objects/_status-indicator.scss index 1fcdf02..4e4aa42 100644 --- a/src/objects/_status-indicator.scss +++ b/src/objects/_status-indicator.scss | |||
@@ -9,19 +9,19 @@ | |||
9 | @use 'status-indicator.vars' as vars; | 9 | @use 'status-indicator.vars' as vars; |
10 | 10 | ||
11 | @mixin styles { | 11 | @mixin styles { |
12 | @include materialize-at-root(meta.module-variables('vars')); | 12 | @include materialize-at-root(meta.module-variables('vars')); |
13 | 13 | ||
14 | @include bem.object('status-indicator') { | 14 | @include bem.object('status-indicator') { |
15 | display: inline-block; | 15 | display: inline-block; |
16 | inline-size: props.get(vars.$size); | 16 | inline-size: props.get(vars.$size); |
17 | block-size: props.get(vars.$size); | 17 | block-size: props.get(vars.$size); |
18 | background-color: props.get(vars.$default); | 18 | background-color: props.get(vars.$default); |
19 | border-radius: 10em; | 19 | border-radius: 10em; |
20 | 20 | ||
21 | @each $theme in map.keys(props.get(vars.$themes)) { | 21 | @each $theme in map.keys(props.get(vars.$themes)) { |
22 | @include bem.is(string.slice($theme, 3)) { | 22 | @include bem.is(string.slice($theme, 3)) { |
23 | background-color: props.get(vars.$themes, $theme); | 23 | background-color: props.get(vars.$themes, $theme); |
24 | } | 24 | } |
25 | } | 25 | } |
26 | } | 26 | } |
27 | } | 27 | } |