summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-03-18 16:10:43 +0100
committerVolpeon <git@volpeon.ink>2022-03-18 16:10:43 +0100
commit571fb43da56e0e638a814453fb424530cde3d144 (patch)
tree2fb8353523793ee2e2cd0960857e6f38e5535280 /src
parentAdded alert (diff)
downloadiro-design-571fb43da56e0e638a814453fb424530cde3d144.tar.gz
iro-design-571fb43da56e0e638a814453fb424530cde3d144.tar.bz2
iro-design-571fb43da56e0e638a814453fb424530cde3d144.zip
More utility classes
Diffstat (limited to 'src')
-rw-r--r--src/_utils.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/_utils.scss b/src/_utils.scss
index 4ad1401..aeb0812 100644
--- a/src/_utils.scss
+++ b/src/_utils.scss
@@ -56,6 +56,26 @@ $dirs: (
56 width: 100%; 56 width: 100%;
57} 57}
58 58
59@include iro.bem-utility('w-75') {
60 width: 75%;
61}
62
63@include iro.bem-utility('w-50') {
64 width: 50%;
65}
66
67@include iro.bem-utility('w-25') {
68 width: 25%;
69}
70
71@include iro.bem-utility('w-1px') {
72 width: 1px;
73}
74
75@include iro.bem-utility('w-0') {
76 width: 0;
77}
78
59@include iro.bem-utility('elp') { 79@include iro.bem-utility('elp') {
60 overflow: hidden; 80 overflow: hidden;
61 text-overflow: ellipsis; 81 text-overflow: ellipsis;