lism-css 0.0.13 → 0.1.1
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.md +2 -2
- package/dist/css/base.css +1 -1
- package/dist/css/main.css +1 -1
- package/dist/css/main_legacy.css +1 -1
- package/dist/css/props.css +1 -1612
- package/package.json +1 -1
- package/src/scss/_props.scss +1 -1
- package/src/scss/base/_tokens.scss +4 -2
package/package.json
CHANGED
package/src/scss/_props.scss
CHANGED
|
@@ -46,7 +46,9 @@
|
|
|
46
46
|
// --ff-sans: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
|
|
47
47
|
// --ff-serif: serif;
|
|
48
48
|
|
|
49
|
-
--ff-base:
|
|
49
|
+
--ff-base:
|
|
50
|
+
-apple-system, 'BlinkMacSystemFont', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo,
|
|
51
|
+
sans-serif, 'Segoe UI Emoji';
|
|
50
52
|
|
|
51
53
|
// Optima, Georgia, Garamond, Baskerville;
|
|
52
54
|
--ff-accent: 'Garamond', 'Baskerville', 'Times New Roman', serif;
|
|
@@ -68,7 +70,7 @@
|
|
|
68
70
|
// --fz-2xs: 0.727em; //calc(1em * 8 / 11);
|
|
69
71
|
|
|
70
72
|
--_fzmol: 8; // 7 ~ に対応.
|
|
71
|
-
|
|
73
|
+
--fz-5xl: calc(1em * var(--_fzmol) / (var(--_fzmol) - 6));
|
|
72
74
|
--fz-4xl: calc(1em * var(--_fzmol) / (var(--_fzmol) - 5));
|
|
73
75
|
--fz-3xl: calc(1em * var(--_fzmol) / (var(--_fzmol) - 4));
|
|
74
76
|
--fz-2xl: calc(1em * var(--_fzmol) / (var(--_fzmol) - 3));
|