sk-clib 1.1.2 → 1.2.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/dist/styles.css +10 -11
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -207,9 +207,6 @@
|
|
|
207
207
|
.mt-5 {
|
|
208
208
|
margin-top: calc(var(--spacing) * 5);
|
|
209
209
|
}
|
|
210
|
-
.mt-20 {
|
|
211
|
-
margin-top: calc(var(--spacing) * 20);
|
|
212
|
-
}
|
|
213
210
|
.block {
|
|
214
211
|
display: block;
|
|
215
212
|
}
|
|
@@ -226,6 +223,12 @@
|
|
|
226
223
|
.h-12 {
|
|
227
224
|
height: calc(var(--spacing) * 12);
|
|
228
225
|
}
|
|
226
|
+
.h-20 {
|
|
227
|
+
height: calc(var(--spacing) * 20);
|
|
228
|
+
}
|
|
229
|
+
.h-fit {
|
|
230
|
+
height: fit-content;
|
|
231
|
+
}
|
|
229
232
|
.h-full {
|
|
230
233
|
height: 100%;
|
|
231
234
|
}
|
|
@@ -259,11 +262,8 @@
|
|
|
259
262
|
.justify-center {
|
|
260
263
|
justify-content: center;
|
|
261
264
|
}
|
|
262
|
-
.
|
|
263
|
-
|
|
264
|
-
}
|
|
265
|
-
.gap-5 {
|
|
266
|
-
gap: calc(var(--spacing) * 5);
|
|
265
|
+
.overflow-y-auto {
|
|
266
|
+
overflow-y: auto;
|
|
267
267
|
}
|
|
268
268
|
.rounded-md {
|
|
269
269
|
border-radius: var(--radius-md);
|
|
@@ -281,9 +281,6 @@
|
|
|
281
281
|
.bg-surface-0 {
|
|
282
282
|
background-color: var(--color-surface-0);
|
|
283
283
|
}
|
|
284
|
-
.bg-surface-2 {
|
|
285
|
-
background-color: var(--color-surface-2);
|
|
286
|
-
}
|
|
287
284
|
.px-4 {
|
|
288
285
|
padding-inline: calc(var(--spacing) * 4);
|
|
289
286
|
}
|
|
@@ -364,6 +361,8 @@
|
|
|
364
361
|
html, body {
|
|
365
362
|
width: 100%;
|
|
366
363
|
height: 100%;
|
|
364
|
+
overflow-y: auto;
|
|
365
|
+
background-color: var(--color-surface-2);
|
|
367
366
|
}
|
|
368
367
|
}
|
|
369
368
|
@layer docs {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sk-clib",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "svelte-package && npx tailwindcss -i ./src/app.css -o ./dist/styles.css",
|
|
31
|
+
"webbuild": "vite build",
|
|
31
32
|
"prepublishOnly": "npm run build && publint --skip-pack",
|
|
32
33
|
"dev": "vite dev",
|
|
33
34
|
"preview": "vite preview",
|