@x33025/sveltely 0.0.49 → 0.0.50

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.
@@ -20,11 +20,11 @@
20
20
  }
21
21
 
22
22
  .vstack {
23
- @apply flex min-h-0 flex-col;
23
+ @apply flex min-h-0 min-w-0 flex-col;
24
24
  }
25
25
 
26
26
  .hstack {
27
- @apply flex min-w-0 flex-row;
27
+ @apply flex min-h-0 min-w-0 flex-row;
28
28
  }
29
29
 
30
30
  .spacer {
package/dist/style.css CHANGED
@@ -582,10 +582,12 @@
582
582
  .vstack {
583
583
  display: flex;
584
584
  min-height: calc(var(--spacing) * 0);
585
+ min-width: calc(var(--spacing) * 0);
585
586
  flex-direction: column;
586
587
  }
587
588
  .hstack {
588
589
  display: flex;
590
+ min-height: calc(var(--spacing) * 0);
589
591
  min-width: calc(var(--spacing) * 0);
590
592
  flex-direction: row;
591
593
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x33025/sveltely",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",