@sk-web-gui/core 0.1.12 → 0.1.13
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/package.json +2 -2
- package/src/index.js +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sk-web-gui/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"postcss-import": "^14.0.2",
|
|
32
32
|
"tailwindcss": "^2.2.4"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "23cd898ff3d845c794ff3daa56aea2a24ee83463"
|
|
35
35
|
}
|
package/src/index.js
CHANGED
|
@@ -109,12 +109,15 @@ module.exports = plugin.withOptions(
|
|
|
109
109
|
"h1,h2,h3,h4,h5,h6": {
|
|
110
110
|
"@apply font-bold": {},
|
|
111
111
|
},
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
112
|
+
small: {
|
|
113
|
+
fontSize: "1.4rem",
|
|
114
|
+
},
|
|
115
|
+
h1: { "@apply text-3xl leading-3xl": {} },
|
|
116
|
+
h2: { "@apply text-2xl leading-2xl": {} },
|
|
117
|
+
h3: { "@apply text-xl leading-xl": {} },
|
|
118
|
+
h4: { "@apply text-lg leading-lg": {} },
|
|
119
|
+
h5: { "@apply text-base leading-base": {} },
|
|
120
|
+
h6: { "@apply text-sm leading-sm": {} },
|
|
118
121
|
p: { "@apply my-4": {} },
|
|
119
122
|
});
|
|
120
123
|
}
|
|
@@ -141,6 +144,7 @@ module.exports = plugin.withOptions(
|
|
|
141
144
|
gray: {
|
|
142
145
|
DEFAULT: "#4b4b4b",
|
|
143
146
|
stroke: "#939393",
|
|
147
|
+
middle: "#ECECEC",
|
|
144
148
|
light: "#F4F4F4",
|
|
145
149
|
lighter: "#F9F9F9",
|
|
146
150
|
},
|