prewindcss 1.2.9 → 1.2.10

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/README.md CHANGED
@@ -28,7 +28,7 @@ Create a `styles.css` file that sets up CSS layers, imports your theme and Prewi
28
28
  @layer reset, styles, prewind;
29
29
 
30
30
  @import url("theme.css");
31
- @import url("https://unpkg.com/prewindcss@1.2.9");
31
+ @import url("https://unpkg.com/prewindcss@1.2.10");
32
32
 
33
33
  @layer styles {
34
34
  body {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prewindcss",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
4
4
  "description": "Lightweight, no-build Tailwind alternative",
5
5
  "type": "module",
6
6
  "main": "prewind.css",
package/prewind.css CHANGED
@@ -756,6 +756,7 @@
756
756
  height: 100%;
757
757
  }
758
758
  .h-screen {
759
+ height: 100dvh;
759
760
  height: 100vh;
760
761
  }
761
762
 
@@ -1205,6 +1206,7 @@
1205
1206
  max-height: 100%;
1206
1207
  }
1207
1208
  .max-h-screen {
1209
+ max-height: 100dvh;
1208
1210
  max-height: 100vh;
1209
1211
  }
1210
1212
 
@@ -1233,6 +1235,7 @@
1233
1235
  min-height: 100%;
1234
1236
  }
1235
1237
  .min-h-screen {
1238
+ min-height: 100dvh;
1236
1239
  min-height: 100vh;
1237
1240
  }
1238
1241