diff options
author | Volpeon <git@volpeon.ink> | 2022-02-20 18:11:37 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2022-02-20 18:11:37 +0100 |
commit | cb99f0723b94552d1b99a103ec32b11d20869f55 (patch) | |
tree | 3201e584f1376b8ca5af46c5bb46514c1774d9af | |
parent | Undo last change (diff) | |
download | iro-design-cb99f0723b94552d1b99a103ec32b11d20869f55.tar.gz iro-design-cb99f0723b94552d1b99a103ec32b11d20869f55.tar.bz2 iro-design-cb99f0723b94552d1b99a103ec32b11d20869f55.zip |
Added display none utility
-rw-r--r-- | src/_utils.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/_utils.scss b/src/_utils.scss index 69885ba..e0dbcc5 100644 --- a/src/_utils.scss +++ b/src/_utils.scss | |||
@@ -1,5 +1,6 @@ | |||
1 | @use 'iro-sass/src/index' as iro; | 1 | @use 'iro-sass/src/index' as iro; |
2 | @use 'functions' as fn; | 2 | @use 'functions' as fn; |
3 | @use 'include-media/dist/include-media' as media; | ||
3 | 4 | ||
4 | $dirs: ( | 5 | $dirs: ( |
5 | '': '', | 6 | '': '', |
@@ -17,6 +18,24 @@ $dirs: ( | |||
17 | display: contents; | 18 | display: contents; |
18 | } | 19 | } |
19 | 20 | ||
21 | @include iro.bem-utility('d-none') { | ||
22 | display: none; | ||
23 | |||
24 | @each $breakpoint in map-keys(media.$breakpoints) { | ||
25 | @include media('<=#{$breakpoint}') { | ||
26 | @include suffix('#{$breakpoint}-lo') { | ||
27 | display: none; | ||
28 | } | ||
29 | } | ||
30 | |||
31 | @include media('>#{$breakpoint}') { | ||
32 | @include suffix('#{$breakpoint}-hi') { | ||
33 | display: none; | ||
34 | } | ||
35 | } | ||
36 | } | ||
37 | } | ||
38 | |||
20 | @include iro.bem-utility('o-auto') { | 39 | @include iro.bem-utility('o-auto') { |
21 | overflow: auto; | 40 | overflow: auto; |
22 | } | 41 | } |