lism-css 0.10.0 → 0.10.2
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 +260 -0
- package/README.md +202 -17
- package/dist/components/Group/Group.d.ts +2 -1
- package/dist/components/Group/Group.stories.d.ts +7 -0
- package/dist/components/Heading/Heading.stories.d.ts +7 -0
- package/dist/components/Inline/Inline.d.ts +2 -1
- package/dist/components/Inline/Inline.stories.d.ts +9 -0
- package/dist/components/List/List.d.ts +2 -1
- package/dist/components/List/List.stories.d.ts +9 -0
- package/dist/components/List/ListItem.d.ts +2 -1
- package/dist/components/Text/Text.d.ts +2 -1
- package/dist/components/Text/Text.stories.d.ts +6 -0
- package/dist/components/atomic/Media/Media.d.ts +2 -1
- package/dist/components/atomic/Media/Media.stories.d.ts +3 -0
- package/dist/components/atomic/Media/index.js +5 -5
- 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/lib/types/allowedTags.d.ts +6 -0
- package/package.json +1 -1
- package/packages/astro/Group/Group.astro +3 -2
- package/packages/astro/Inline/Inline.astro +3 -2
- package/packages/astro/List/List.astro +3 -2
- package/packages/astro/List/ListItem.astro +3 -2
- package/packages/astro/Media/Media.astro +11 -6
- package/packages/astro/Text/Text.astro +3 -2
- package/packages/astro/types/MediaPolymorphic.ts +51 -0
- package/src/scss/base/_html.scss +61 -65
- package/src/scss/base/index.scss +1 -1
- package/src/scss/base/set/_bp.scss +4 -1
- package/src/scss/base/set/_cqUnit.scss +8 -12
- package/src/scss/base/tokens/_shadow.scss +4 -4
- package/src/scss/base/tokens/_tokens.scss +46 -49
- package/src/scss/base/tokens/_typography.scss +39 -46
- package/src/scss/reset.scss +34 -43
- package/src/scss/base/tokens/_property.scss +0 -21
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// @property が使える環境であればコンテナのさらに親要素の幅を参照できるので、containerを1段階飛び出せる。
|
|
2
|
-
// cqi を算出値で保持するために登録済みカスタムプロパティとして定義
|
|
3
|
-
// --parent-cq
|
|
4
|
-
@property --sz--container {
|
|
5
|
-
syntax: '<length-percentage>';
|
|
6
|
-
initial-value: 100cqi;
|
|
7
|
-
inherits: true;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
// :lang(ja) {
|
|
11
|
-
// --hl: calc((1lh - 1em) / 2);
|
|
12
|
-
// }
|
|
13
|
-
// :lang(en) {
|
|
14
|
-
// --hl: calc((1lh - 1cap) / 2);
|
|
15
|
-
// }
|
|
16
|
-
// lh非サポートブラウザ用のフォールバック
|
|
17
|
-
// @supports not (gap: 1lh) {
|
|
18
|
-
// :root {
|
|
19
|
-
// --HL: 0px;
|
|
20
|
-
// }
|
|
21
|
-
// }
|