@x33025/sveltely 0.0.2 → 0.0.3
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/style/index.css +18 -0
- package/dist/style.css +17 -0
- package/package.json +1 -1
package/dist/style/index.css
CHANGED
|
@@ -27,6 +27,24 @@
|
|
|
27
27
|
.hstack {
|
|
28
28
|
@apply flex min-h-0 min-w-0 flex-1 flex-row;
|
|
29
29
|
}
|
|
30
|
+
|
|
31
|
+
.spacer {
|
|
32
|
+
flex: 1 1 auto;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.divider {
|
|
36
|
+
@apply bg-gray-200/70;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.hstack > .divider {
|
|
40
|
+
width: 1px;
|
|
41
|
+
align-self: stretch;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.vstack > .divider {
|
|
45
|
+
height: 1px;
|
|
46
|
+
width: 100%;
|
|
47
|
+
}
|
|
30
48
|
}
|
|
31
49
|
|
|
32
50
|
@layer theme {
|
package/dist/style.css
CHANGED
|
@@ -540,6 +540,23 @@
|
|
|
540
540
|
flex: 1;
|
|
541
541
|
flex-direction: row;
|
|
542
542
|
}
|
|
543
|
+
.spacer {
|
|
544
|
+
flex: 1 1 auto;
|
|
545
|
+
}
|
|
546
|
+
.divider {
|
|
547
|
+
background-color: color-mix(in srgb, oklch(92.8% 0.006 264.531) 70%, transparent);
|
|
548
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
549
|
+
background-color: color-mix(in oklab, var(--color-gray-200) 70%, transparent);
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
.hstack > .divider {
|
|
553
|
+
width: 1px;
|
|
554
|
+
align-self: stretch;
|
|
555
|
+
}
|
|
556
|
+
.vstack > .divider {
|
|
557
|
+
height: 1px;
|
|
558
|
+
width: 100%;
|
|
559
|
+
}
|
|
543
560
|
}
|
|
544
561
|
@layer theme {
|
|
545
562
|
:root {
|