diff options
author | Volpeon <git@volpeon.ink> | 2024-10-19 10:34:53 +0200 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2024-10-19 10:34:53 +0200 |
commit | 50d24a41b5656cdaf31468b28d08da765ca95763 (patch) | |
tree | 9ca25c56dc66a02bf2ff498ed4669a097e9a9815 /src/_props.scss | |
parent | Update (diff) | |
download | iro-design-50d24a41b5656cdaf31468b28d08da765ca95763.tar.gz iro-design-50d24a41b5656cdaf31468b28d08da765ca95763.tar.bz2 iro-design-50d24a41b5656cdaf31468b28d08da765ca95763.zip |
Update
Diffstat (limited to 'src/_props.scss')
-rw-r--r-- | src/_props.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/_props.scss b/src/_props.scss index ac1dfd5..1a0f7d0 100644 --- a/src/_props.scss +++ b/src/_props.scss | |||
@@ -13,7 +13,7 @@ | |||
13 | } | 13 | } |
14 | 14 | ||
15 | :root { | 15 | :root { |
16 | @include iro.props-materialize($ref); | 16 | @include iro.props-materialize($ref, null); |
17 | 17 | ||
18 | @each $breakpoint in map.keys(media.$breakpoints) { | 18 | @each $breakpoint in map.keys(media.$breakpoints) { |
19 | @include media.media('<=#{$breakpoint}') { | 19 | @include media.media('<=#{$breakpoint}') { |
@@ -29,7 +29,13 @@ | |||
29 | @each $theme-name in map.keys(themes.$themes) { | 29 | @each $theme-name in map.keys(themes.$themes) { |
30 | @if $theme-name != themes.$theme-default { | 30 | @if $theme-name != themes.$theme-default { |
31 | @include iro.bem-theme($theme-name) { | 31 | @include iro.bem-theme($theme-name) { |
32 | @include iro.props-materialize($ref); | 32 | @include iro.props-materialize($ref, null); |
33 | |||
34 | @each $breakpoint in map.keys(media.$breakpoints) { | ||
35 | @include media.media('<=#{$breakpoint}') { | ||
36 | @include iro.props-materialize($ref, $breakpoint); | ||
37 | } | ||
38 | } | ||
33 | 39 | ||
34 | @media (prefers-color-scheme: dark) { | 40 | @media (prefers-color-scheme: dark) { |
35 | @include iro.props-materialize($ref, 'dark'); | 41 | @include iro.props-materialize($ref, 'dark'); |