@x33025/sveltely 0.0.34 → 0.0.35
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 +3 -3
- package/dist/style.css +0 -3
- package/package.json +1 -1
package/dist/style/index.css
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
@layer utilities {
|
|
11
11
|
.layout {
|
|
12
|
-
@apply flex size-full min-h-0 min-w-0
|
|
12
|
+
@apply flex size-full min-h-0 min-w-0 flex-col;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.center {
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.vstack {
|
|
20
|
-
@apply flex min-h-0
|
|
20
|
+
@apply flex min-h-0 flex-col;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.hstack {
|
|
24
|
-
@apply flex min-w-0
|
|
24
|
+
@apply flex min-w-0 flex-row;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.spacer {
|
package/dist/style.css
CHANGED
|
@@ -548,7 +548,6 @@
|
|
|
548
548
|
height: 100%;
|
|
549
549
|
min-height: calc(var(--spacing) * 0);
|
|
550
550
|
min-width: calc(var(--spacing) * 0);
|
|
551
|
-
flex-shrink: 0;
|
|
552
551
|
flex-direction: column;
|
|
553
552
|
}
|
|
554
553
|
.center {
|
|
@@ -558,13 +557,11 @@
|
|
|
558
557
|
.vstack {
|
|
559
558
|
display: flex;
|
|
560
559
|
min-height: calc(var(--spacing) * 0);
|
|
561
|
-
flex-shrink: 0;
|
|
562
560
|
flex-direction: column;
|
|
563
561
|
}
|
|
564
562
|
.hstack {
|
|
565
563
|
display: flex;
|
|
566
564
|
min-width: calc(var(--spacing) * 0);
|
|
567
|
-
flex-shrink: 0;
|
|
568
565
|
flex-direction: row;
|
|
569
566
|
}
|
|
570
567
|
.spacer {
|