lism-css 0.14.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.ja.md +6 -6
- package/README.md +8 -7
- package/bin/build-config.js +1 -4
- package/bin/cli.mjs +13 -3
- package/config/defaults/props.ts +11 -14
- package/config/defaults/tokens.ts +2 -2
- package/config/defaults/traits.ts +4 -0
- package/dist/components/Lism/Lism.d.ts +2 -1
- package/dist/components/index.d.ts +3 -3
- package/dist/components/index.js +57 -54
- package/dist/components/layout/AutoColumns/AutoColumns.d.ts +4 -0
- package/dist/components/layout/{FluidCols/FluidCols.stories.d.ts → AutoColumns/AutoColumns.stories.d.ts} +3 -3
- package/dist/components/layout/AutoColumns/index.d.ts +3 -0
- package/dist/components/layout/AutoColumns/index.js +8 -0
- package/dist/components/layout/SwitchColumns/SwitchColumns.d.ts +4 -0
- package/dist/components/layout/{SwitchCols/SwitchCols.stories.d.ts → SwitchColumns/SwitchColumns.stories.d.ts} +3 -3
- package/dist/components/layout/SwitchColumns/index.d.ts +3 -0
- package/dist/components/layout/SwitchColumns/index.js +8 -0
- package/dist/components/layout/WithSide/WithSide.d.ts +4 -0
- package/dist/components/layout/{SideMain/SideMain.stories.d.ts → WithSide/WithSide.stories.d.ts} +3 -3
- package/dist/components/layout/WithSide/index.d.ts +3 -0
- package/dist/components/layout/WithSide/index.js +8 -0
- package/dist/config/default-config.d.ts +6 -13
- package/dist/config/defaults/props.d.ts +5 -14
- package/dist/config/defaults/props.js +7 -12
- package/dist/config/defaults/tokens.d.ts +2 -2
- package/dist/config/defaults/tokens.js +2 -2
- package/dist/config/defaults/traits.d.ts +4 -0
- package/dist/config/defaults/traits.js +5 -1
- package/dist/config/index.d.ts +12 -26
- package/dist/css/base/set.css +1 -1
- package/dist/css/base.css +1 -1
- package/dist/css/main.css +1 -1
- package/dist/css/main_no_layer.css +1 -1
- package/dist/css/primitives/layout.css +1 -1
- package/dist/css/props.css +1 -1
- package/dist/css/trait.css +1 -0
- package/dist/css/utility.css +1 -1
- package/dist/lib/getLayoutProps.js +25 -25
- package/dist/lib/getLismProps.d.ts +5 -5
- package/dist/lib/getLismProps.js +101 -102
- package/dist/lib/types/LayoutProps.d.ts +7 -7
- package/dist/lib/types/TraitProps.d.ts +2 -2
- package/package.json +1 -1
- package/packages/astro/index.ts +6 -3
- package/packages/astro/layout/{FluidCols/FluidCols.astro → AutoColumns/AutoColumns.astro} +3 -3
- package/packages/astro/layout/AutoColumns/index.ts +4 -0
- package/packages/astro/layout/Flex/Flex.astro +3 -2
- package/packages/astro/layout/Flow/Flow.astro +2 -2
- package/packages/astro/layout/{SwitchCols/SwitchCols.astro → SwitchColumns/SwitchColumns.astro} +3 -3
- package/packages/astro/layout/SwitchColumns/index.ts +4 -0
- package/packages/astro/layout/{SideMain/SideMain.astro → WithSide/WithSide.astro} +3 -3
- package/packages/astro/layout/WithSide/index.ts +4 -0
- package/packages/astro/types.ts +3 -0
- package/src/scss/_auto_output.scss +12 -11
- package/src/scss/_prop-config.scss +5 -14
- package/src/scss/_with_layer.scss +8 -4
- package/src/scss/base/_html.scss +4 -4
- package/src/scss/base/set/{_innerRs.scss → _bdrsInner.scss} +1 -1
- package/src/scss/base/set/_hov.scss +4 -4
- package/src/scss/base/set/_revert.scss +6 -0
- package/src/scss/base/set/index.scss +2 -4
- package/src/scss/base/tokens/_shadow.scss +18 -12
- package/src/scss/base/tokens/_tokens.scss +7 -16
- package/src/scss/main_no_layer.scss +4 -1
- package/src/scss/primitives/layout/{_fluidCols.scss → _autoColumns.scss} +1 -1
- package/src/scss/primitives/layout/_flow.scss +1 -2
- package/src/scss/primitives/layout/{_switchCols.scss → _switchColumns.scss} +2 -2
- package/src/scss/primitives/layout/{_sideMain.scss → _withSide.scss} +1 -1
- package/src/scss/primitives/layout/index.scss +3 -3
- package/src/scss/props/_hover.scss +28 -17
- package/src/scss/props/_size.scss +1 -1
- package/src/scss/{base/set → trait/has}/_gutter.scss +1 -1
- package/src/scss/trait/has/_mask.scss +6 -0
- package/src/scss/trait/has/_snap.scss +11 -0
- package/src/scss/trait/has/_transition.scss +8 -0
- package/src/scss/trait/index.scss +12 -0
- package/src/scss/{primitives/trait → trait/is}/_container.scss +2 -2
- package/src/scss/utility/{_itemDivider.scss → _divide.scss} +10 -2
- package/src/scss/utility/_trimHL.scss +3 -29
- package/src/scss/utility/index.scss +1 -2
- package/dist/components/layout/FluidCols/FluidCols.d.ts +0 -4
- package/dist/components/layout/FluidCols/index.d.ts +0 -1
- package/dist/components/layout/FluidCols/index.js +0 -8
- package/dist/components/layout/SideMain/SideMain.d.ts +0 -4
- package/dist/components/layout/SideMain/index.d.ts +0 -1
- package/dist/components/layout/SideMain/index.js +0 -8
- package/dist/components/layout/SwitchCols/SwitchCols.d.ts +0 -4
- package/dist/components/layout/SwitchCols/index.d.ts +0 -1
- package/dist/components/layout/SwitchCols/index.js +0 -8
- package/dist/css/primitives/trait.css +0 -1
- package/packages/astro/layout/FluidCols/index.ts +0 -1
- package/packages/astro/layout/SideMain/index.ts +0 -1
- package/packages/astro/layout/SwitchCols/index.ts +0 -1
- package/src/scss/base/set/_mask.scss +0 -6
- package/src/scss/base/set/_transition.scss +0 -11
- package/src/scss/primitives/trait/index.scss +0 -6
- package/src/scss/utility/_snap.scss +0 -8
- /package/src/scss/{primitives/trait → trait/is}/_boxLink.scss +0 -0
- /package/src/scss/{primitives/trait → trait/is}/_coverLink.scss +0 -0
- /package/src/scss/{primitives/trait → trait/is}/_layer.scss +0 -0
- /package/src/scss/{primitives/trait → trait/is}/_wrapper.scss +0 -0
package/src/scss/base/_html.scss
CHANGED
|
@@ -95,9 +95,9 @@ hr {
|
|
|
95
95
|
/* --------------------------------------------------
|
|
96
96
|
list
|
|
97
97
|
-------------------------------------------------- */
|
|
98
|
-
// class
|
|
99
|
-
|
|
100
|
-
:is(ul, ol):where([class
|
|
98
|
+
// classを持たないリスト要素はブラウザ標準のスタイルを復活させる。
|
|
99
|
+
// Property Class だけの ul/ol など、明示的に戻したい場合は `.set--revert` を付与する(base/set/_revert.scss)。
|
|
100
|
+
:is(ul, ol):where(:not([class])) {
|
|
101
101
|
list-style: revert;
|
|
102
102
|
padding-inline-start: var(--list-px-s, var(--s30));
|
|
103
103
|
}
|
|
@@ -148,7 +148,7 @@ select,
|
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
:disabled {
|
|
151
|
-
opacity: var(--o
|
|
151
|
+
opacity: var(--o--pp);
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
/* --------------------------------------------------
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
@media (any-hover: hover) {
|
|
2
|
-
.set--hov:hover {
|
|
2
|
+
.set--var\:hov:hover {
|
|
3
3
|
--_notHov: ;
|
|
4
4
|
}
|
|
5
|
-
.set--hov:not(:is(:hover, :focus-within)) {
|
|
5
|
+
.set--var\:hov:not(:is(:hover, :focus-within)) {
|
|
6
6
|
--_isHov: ;
|
|
7
7
|
}
|
|
8
8
|
}
|
|
9
9
|
@media (any-hover: none) {
|
|
10
|
-
.set--hov {
|
|
10
|
+
.set--var\:hov {
|
|
11
11
|
--_isHov: ;
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
-
.set--hov:is(:focus-visible, :focus-within) {
|
|
14
|
+
.set--var\:hov:is(:focus-visible, :focus-within) {
|
|
15
15
|
--_notHov: ;
|
|
16
16
|
}
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
/* --------------------------------------------------
|
|
2
2
|
shadow
|
|
3
|
-
Memo:
|
|
3
|
+
Memo: :root だけで --bxsh-- をセットしてしまうと --shc がその時点で固定されるので、
|
|
4
|
+
要素ごとに --shc を上書きできるよう、再セット用の set--var:bxsh クラスを併用する。
|
|
4
5
|
-------------------------------------------------- */
|
|
5
|
-
:root
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
--
|
|
9
|
-
--
|
|
10
|
-
--
|
|
11
|
-
--
|
|
6
|
+
:root {
|
|
7
|
+
--shc: hsl(220 4% 8% / 15%);
|
|
8
|
+
|
|
9
|
+
--shsz--10: 0px 1px 3px;
|
|
10
|
+
--shsz--20: 0px 2px 6px;
|
|
11
|
+
--shsz--30: 0px 4px 12px;
|
|
12
|
+
--shsz--40: 0px 8px 24px;
|
|
13
|
+
--shsz--50: 0px 16px 48px;
|
|
14
|
+
}
|
|
12
15
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
--bxsh--
|
|
16
|
-
--bxsh--
|
|
16
|
+
:root,
|
|
17
|
+
.set--var\:bxsh {
|
|
18
|
+
--bxsh--10: var(--shsz--10) var(--shc);
|
|
19
|
+
--bxsh--20: var(--shsz--20) var(--shc);
|
|
20
|
+
--bxsh--30: var(--shsz--30) var(--shc);
|
|
21
|
+
--bxsh--40: var(--shsz--40) var(--shc);
|
|
22
|
+
--bxsh--50: var(--shsz--50) var(--shc);
|
|
17
23
|
}
|
|
@@ -61,12 +61,14 @@
|
|
|
61
61
|
// divider (border)
|
|
62
62
|
--divider: hsl(224 8% 88%);
|
|
63
63
|
|
|
64
|
-
/**
|
|
64
|
+
/**
|
|
65
65
|
* opacity
|
|
66
|
+
* 音楽の強弱記号(piano 系列)に由来。p の反復回数が多いほど透明度が増す。
|
|
66
67
|
*/
|
|
67
|
-
--o
|
|
68
|
-
--o
|
|
69
|
-
--o
|
|
68
|
+
--o--mp: 0.9;
|
|
69
|
+
--o--p: 0.75;
|
|
70
|
+
--o--pp: 0.5;
|
|
71
|
+
--o--ppp: 0.25;
|
|
70
72
|
|
|
71
73
|
/**
|
|
72
74
|
* border-radius
|
|
@@ -77,18 +79,7 @@
|
|
|
77
79
|
--bdrs--40: 1.5rem; // ≒ 24px
|
|
78
80
|
--bdrs--99: 99rem;
|
|
79
81
|
|
|
80
|
-
/**
|
|
81
|
-
* shadow color, shadow inset, shadow size
|
|
82
|
-
*/
|
|
83
|
-
--shc: hsl(220 4% 8% / 5%);
|
|
84
|
-
|
|
85
|
-
--shsz--5: 0px 1px 3px;
|
|
86
|
-
--shsz--10: 0px 2px 6px;
|
|
87
|
-
--shsz--20: 0px 4px 12px;
|
|
88
|
-
--shsz--30: 0px 8px 24px;
|
|
89
|
-
--shsz--40: 0px 16px 48px;
|
|
90
|
-
|
|
91
|
-
/**
|
|
82
|
+
/**
|
|
92
83
|
* aspect-ratio
|
|
93
84
|
*/
|
|
94
85
|
--ar--og: 1.91/1;
|
|
@@ -11,8 +11,11 @@
|
|
|
11
11
|
// base
|
|
12
12
|
@use './base/index' as base;
|
|
13
13
|
|
|
14
|
+
// Trait(独立レイヤー)
|
|
15
|
+
// primitive より弱い位置に配置。詳細は _with_layer.scss のコメント参照。
|
|
16
|
+
@use './trait/index' as trait;
|
|
17
|
+
|
|
14
18
|
// Primitives
|
|
15
|
-
@use './primitives/trait/index' as trait;
|
|
16
19
|
@use './primitives/layout/index' as layout;
|
|
17
20
|
@use './primitives/atomic/index' as atomic;
|
|
18
21
|
|
|
@@ -19,14 +19,13 @@
|
|
|
19
19
|
.-flow\:s > * {
|
|
20
20
|
--flow: var(--flow--s);
|
|
21
21
|
}
|
|
22
|
-
|
|
23
22
|
.-flow\: > * {
|
|
24
23
|
--flow: inherit;
|
|
25
24
|
}
|
|
26
25
|
|
|
27
26
|
// 見出しの上部の余白は広くする.
|
|
28
27
|
.l--flow > :where(h1, h2, h3, h4, h5, h6) {
|
|
29
|
-
margin-block-start: calc(var(--flow) *
|
|
28
|
+
margin-block-start: calc(var(--flow) * 2 + 0.5em);
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
// 打ち消し
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
.l--
|
|
1
|
+
.l--switchColumns {
|
|
2
2
|
--breakSize: var(--sz--xs); /* 横並びを維持する幅(親のサイズで指定する) */
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-wrap: wrap;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
.l--
|
|
7
|
+
.l--switchColumns > * {
|
|
8
8
|
flex-grow: 1;
|
|
9
9
|
flex-basis: calc((var(--breakSize) - 100%) * 9999);
|
|
10
10
|
}
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
@forward './stack';
|
|
6
6
|
@forward './grid';
|
|
7
7
|
@forward './center';
|
|
8
|
-
@forward './
|
|
8
|
+
@forward './autoColumns';
|
|
9
9
|
@forward './columns';
|
|
10
|
-
@forward './
|
|
11
|
-
@forward './
|
|
10
|
+
@forward './withSide';
|
|
11
|
+
@forward './switchColumns';
|
|
12
12
|
@forward './tileGrid';
|
|
13
13
|
@forward './frame';
|
|
@@ -1,44 +1,55 @@
|
|
|
1
1
|
@use '../_mixin' as mixin;
|
|
2
2
|
|
|
3
3
|
@media (any-hover: hover) {
|
|
4
|
-
|
|
4
|
+
/* ----------------------------------------
|
|
5
|
+
* .-hov:-{prop}
|
|
6
|
+
* ---------------------------------------- */
|
|
7
|
+
.-hov\:-c:hover {
|
|
5
8
|
color: var(--hov-c, var(--link)) #{mixin.$maybe_important};
|
|
6
9
|
}
|
|
7
|
-
.-hov
|
|
10
|
+
.-hov\:-bdc:hover {
|
|
8
11
|
border-color: var(--hov-bdc, currentColor) #{mixin.$maybe_important};
|
|
9
12
|
}
|
|
10
|
-
.-hov
|
|
13
|
+
.-hov\:-bgc:hover {
|
|
11
14
|
background-color: var(--hov-bgc, var(--base-2)) #{mixin.$maybe_important};
|
|
12
15
|
}
|
|
13
|
-
.-hov
|
|
14
|
-
opacity: var(--hov-o,
|
|
16
|
+
.-hov\:-o:hover {
|
|
17
|
+
opacity: var(--hov-o, var(--o--p)) #{mixin.$maybe_important};
|
|
15
18
|
}
|
|
16
|
-
.-hov
|
|
17
|
-
box-shadow: var(--hov-bxsh, var(--bxsh--
|
|
19
|
+
.-hov\:-bxsh:hover {
|
|
20
|
+
box-shadow: var(--hov-bxsh, var(--bxsh--50)) #{mixin.$maybe_important};
|
|
18
21
|
}
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
/* ----------------------------------------
|
|
24
|
+
* .-hov:{preset}
|
|
25
|
+
* ---------------------------------------- */
|
|
26
|
+
// underlineをつけるシンプルなエフェクト
|
|
27
|
+
.-hov\:underline:hover {
|
|
28
|
+
text-decoration: underline;
|
|
29
|
+
}
|
|
30
|
+
// 背景色が暗くも明るくても使えるように、ニュートラルグレーを配色。
|
|
31
|
+
// Memo: 黒からの変化の方がわかりづらいため、グレーの中でも少し明るめを混ぜる。
|
|
21
32
|
.-hov\:neutral:hover {
|
|
22
33
|
background-color: color-mix(in srgb, var(--bgc, var(--base)), hsl(220, 5%, 75%) 25%) #{mixin.$maybe_important};
|
|
23
34
|
}
|
|
24
35
|
}
|
|
25
36
|
|
|
26
|
-
//
|
|
27
|
-
// .-hov\:
|
|
28
|
-
//
|
|
37
|
+
// ----------------------------------------
|
|
38
|
+
// .-hov\:in (set--var:hov 連動の consumer class)
|
|
39
|
+
// ----------------------------------------
|
|
29
40
|
|
|
30
|
-
.-hov\:
|
|
31
|
-
--
|
|
41
|
+
.-hov\:in\:hide {
|
|
42
|
+
--transitionProps: opacity;
|
|
32
43
|
opacity: var(--_isHov, 0) #{mixin.$maybe_important};
|
|
33
44
|
}
|
|
34
45
|
|
|
35
|
-
.-hov\:
|
|
36
|
-
--
|
|
46
|
+
.-hov\:in\:show {
|
|
47
|
+
--transitionProps: opacity, visibility;
|
|
37
48
|
opacity: var(--_notHov, 0) #{mixin.$maybe_important};
|
|
38
49
|
visibility: var(--_notHov, hidden) #{mixin.$maybe_important};
|
|
39
50
|
}
|
|
40
51
|
|
|
41
|
-
.-hov\:
|
|
42
|
-
--
|
|
52
|
+
.-hov\:in\:zoom {
|
|
53
|
+
--transitionProps: scale;
|
|
43
54
|
scale: var(--_isHov, 1.1);
|
|
44
55
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// is-- (役割・存在の宣言)
|
|
2
|
+
@forward './is/container';
|
|
3
|
+
@forward './is/wrapper';
|
|
4
|
+
@forward './is/boxLink';
|
|
5
|
+
@forward './is/coverLink'; // Note: position の関係で、boxLink より後で読み込む
|
|
6
|
+
@forward './is/layer';
|
|
7
|
+
|
|
8
|
+
// has-- (機能の付与)
|
|
9
|
+
@forward './has/transition';
|
|
10
|
+
@forward './has/gutter';
|
|
11
|
+
@forward './has/snap';
|
|
12
|
+
@forward './has/mask';
|
|
@@ -1,10 +1,18 @@
|
|
|
1
|
-
.u--
|
|
1
|
+
.u--divide,
|
|
2
|
+
.u--cells {
|
|
2
3
|
--bdw: 1px;
|
|
3
4
|
--bdc: var(--divider);
|
|
4
5
|
gap: var(--bdw);
|
|
5
|
-
padding: var(--bdw);
|
|
6
6
|
|
|
7
7
|
& > * {
|
|
8
8
|
box-shadow: 0 0 0 var(--bdw) var(--bdc);
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
+
/* 間の区切りだけ */
|
|
12
|
+
.u--divide {
|
|
13
|
+
overflow: clip;
|
|
14
|
+
}
|
|
15
|
+
/* 各セルを囲む */
|
|
16
|
+
.u--cells {
|
|
17
|
+
padding: var(--bdw);
|
|
18
|
+
}
|
|
@@ -1,38 +1,12 @@
|
|
|
1
1
|
/*
|
|
2
2
|
ハーフレディングをトリミングするユーティリティクラス。
|
|
3
|
-
Memo: そのうち text-box-trim が使えるようになる
|
|
4
3
|
*/
|
|
5
|
-
|
|
6
4
|
.u--trim {
|
|
7
|
-
// 詰まりすぎにならないようにほんの少しだけ余裕を持たせる
|
|
8
|
-
// margin-block: calc(0.5px + var(--HL) * -1);
|
|
9
5
|
margin-block: calc(var(--hl) * -1);
|
|
10
6
|
}
|
|
11
7
|
|
|
12
8
|
// 子要素の一括トリミング
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
margin-block: var(--my);
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
/*
|
|
20
|
-
* トリミング除外要素
|
|
21
|
-
* Memo: --hl を 0 にはしないようにする.
|
|
22
|
-
*/
|
|
23
|
-
> :where(figure, img, button) {
|
|
24
|
-
--my: 0px;
|
|
25
|
-
}
|
|
9
|
+
// :empty → img, hr, input, br などにもマッチ。かつ中身のない装飾 a--divider や a--spacer もこれだけで除外できる
|
|
10
|
+
.u--trimAll > :not(:empty, figure, picture, video, button, textarea, table) {
|
|
11
|
+
margin-block: calc(var(--hl) * -1);
|
|
26
12
|
}
|
|
27
|
-
|
|
28
|
-
// .u--trimBox {
|
|
29
|
-
// :where(&) > * {
|
|
30
|
-
// --trimHL: calc(0.5px + var(--HL) * -1);
|
|
31
|
-
// }
|
|
32
|
-
// > :first-child {
|
|
33
|
-
// margin-block-start: var(--trimHL);
|
|
34
|
-
// }
|
|
35
|
-
// > :last-child {
|
|
36
|
-
// margin-block-end: var(--trimHL);
|
|
37
|
-
// }
|
|
38
|
-
// }
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ElementType } from 'react';
|
|
2
|
-
import { LayoutComponentProps } from '../../Lism';
|
|
3
|
-
import { FluidColsProps } from '../../../lib/types/LayoutProps';
|
|
4
|
-
export default function FluidCols<T extends ElementType = 'div'>(props: LayoutComponentProps<T, FluidColsProps>): import("react").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as FluidCols } from './FluidCols';
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ElementType } from 'react';
|
|
2
|
-
import { LayoutComponentProps } from '../../Lism';
|
|
3
|
-
import { SideMainProps } from '../../../lib/types/LayoutProps';
|
|
4
|
-
export default function SideMain<T extends ElementType = 'div'>(props: LayoutComponentProps<T, SideMainProps>): import("react").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as SideMain } from './SideMain';
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { ElementType } from 'react';
|
|
2
|
-
import { LayoutComponentProps } from '../../Lism';
|
|
3
|
-
import { SwitchColsProps } from '../../../lib/types/LayoutProps';
|
|
4
|
-
export default function SwitchCols<T extends ElementType = 'div'>(props: LayoutComponentProps<T, SwitchColsProps>): import("react").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as SwitchCols } from './SwitchCols';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.is--container{container-type:inline-size}.is--container>*{--sz--container:100cqi}.is--container.set--gutter>*{--sz--container:calc(100cqi + var(--gutter-size)*2)}.is--wrapper{--contentSize:var(--sz--m,100%)}.is--wrapper>*{margin-inline:auto;max-inline-size:min(100%,var(--contentSize))}.-contentSize\:s{--contentSize:var(--sz--s)}.-contentSize\:l{--contentSize:var(--sz--l)}.is--boxLink{color:inherit;cursor:pointer;display:block;isolation:isolate;pointer-events:auto;position:relative;text-decoration:none}.is--boxLink a{position:relative;z-index:2}.is--coverLink{color:inherit;position:static;text-decoration:none}.is--coverLink:before{content:"";inset:0;position:absolute;z-index:1}.is--layer{inset:0;overflow:hidden;position:absolute}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as FluidCols } from './FluidCols.astro';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as SideMain } from './SideMain.astro';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as SwitchCols } from './SwitchCols.astro';
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
@use '../../_mixin' as mixin;
|
|
2
|
-
|
|
3
|
-
.set--transition {
|
|
4
|
-
transition: var(--hov-duration, 0.25s) var(--hov-ease, linear) var(--hov-delay, 0s);
|
|
5
|
-
transition-property: var(--hov-prop, all);
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
// .-ease\:in {--ease: ease-in;}
|
|
9
|
-
// .-ease\:out {--ease: ease-out;}
|
|
10
|
-
// .-ease\:in-out {--ease: ease-in-out;}
|
|
11
|
-
// .-ease\:linear {--ease: linear;}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|