Permalink
Cannot retrieve contributors at this time
12 lines (10 sloc)
538 Bytes
|
// "Fixed" size containers |
|
|
|
$fixed-sizes: "s", "m", "l", "xl", "xxl"; |
|
|
|
@each $size in $fixed-sizes { |
|
.width_#{$size} { width: var(--space-#{$size}) } |
|
.min-width_#{$size} { min-width: var(--space-#{$size}) } |
|
.height_#{$size} { height: var(--space-#{$size}) } |
|
.min-height_#{$size} { min-height: var(--space-#{$size}) } |
|
.size_#{$size} { width: var(--space-#{$size}); height: var(--space-#{$size}) } |
|
.min-size_#{$size} { min-width: var(--space-#{$size}); min-height: var(--space-#{$size}) } |
|
} |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.