diff options
| author | Volpeon <git@volpeon.ink> | 2022-02-05 12:26:35 +0100 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2022-02-05 12:26:35 +0100 |
| commit | 144b7a2ea83507c98544d14ad9435cc5e51ac071 (patch) | |
| tree | 7b18227482fa9f5d29d358ce1540b7a6d105febd /src/layouts/_card.scss | |
| parent | Init (diff) | |
| download | iro-design-144b7a2ea83507c98544d14ad9435cc5e51ac071.tar.gz iro-design-144b7a2ea83507c98544d14ad9435cc5e51ac071.tar.bz2 iro-design-144b7a2ea83507c98544d14ad9435cc5e51ac071.zip | |
Update
Diffstat (limited to 'src/layouts/_card.scss')
| -rw-r--r-- | src/layouts/_card.scss | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/layouts/_card.scss b/src/layouts/_card.scss new file mode 100644 index 0000000..f6b6b03 --- /dev/null +++ b/src/layouts/_card.scss | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | @include namespace('card') { | ||
| 2 | @include store(( | ||
| 3 | --dims: ( | ||
| 4 | --pad-x: iro-px-to-rem(11px), | ||
| 5 | --pad-y: iro-px-to-rem(8px), | ||
| 6 | --lg: ( | ||
| 7 | --pad-x: iro-px-to-rem(14px), | ||
| 8 | --pad-y: iro-px-to-rem(11px), | ||
| 9 | ) | ||
| 10 | ) | ||
| 11 | )); | ||
| 12 | |||
| 13 | @include layout(namespace()) { | ||
| 14 | display: flex; | ||
| 15 | align-items: center; | ||
| 16 | padding: prop(--dims --pad-y) prop(--dims --pad-x); | ||
| 17 | gap: prop(--dims --pad-x); | ||
| 18 | line-height: 1.4; | ||
| 19 | |||
| 20 | @include modifier('lg') { | ||
| 21 | padding: prop(--dims --lg --pad-y) prop(--dims --lg --pad-x); | ||
| 22 | gap: prop(--dims --lg --pad-x); | ||
| 23 | } | ||
| 24 | |||
| 25 | @include modifier('flush') { | ||
| 26 | padding: 0; | ||
| 27 | } | ||
| 28 | |||
| 29 | @include element('block') { | ||
| 30 | flex: 0 0 auto; | ||
| 31 | |||
| 32 | @include modifier('main') { | ||
| 33 | flex-shrink: 1; | ||
| 34 | width: 100%; | ||
| 35 | } | ||
| 36 | } | ||
| 37 | } | ||
| 38 | } | ||
