@x33025/sveltely 0.0.10 → 0.0.11

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.
@@ -17,11 +17,11 @@
17
17
  }
18
18
 
19
19
  .vstack {
20
- @apply flex h-full min-h-0 flex-col;
20
+ @apply flex min-h-0 flex-col;
21
21
  }
22
22
 
23
23
  .hstack {
24
- @apply flex w-full min-w-0 flex-row;
24
+ @apply flex min-w-0 flex-row;
25
25
  }
26
26
 
27
27
  .spacer {
package/dist/style.css CHANGED
@@ -516,13 +516,11 @@
516
516
  }
517
517
  .vstack {
518
518
  display: flex;
519
- height: 100%;
520
519
  min-height: calc(var(--spacing) * 0);
521
520
  flex-direction: column;
522
521
  }
523
522
  .hstack {
524
523
  display: flex;
525
- width: 100%;
526
524
  min-width: calc(var(--spacing) * 0);
527
525
  flex-direction: row;
528
526
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x33025/sveltely",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",