@rokkit/themes 1.0.0-next.58 → 1.0.0-next.59

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rokkit/themes",
3
- "version": "1.0.0-next.58",
3
+ "version": "1.0.0-next.59",
4
4
  "description": "Themes for use with rokkit components.",
5
5
  "author": "Jerry Thomas <me@jerrythomas.name>",
6
6
  "license": "MIT",
@@ -20,8 +20,7 @@
20
20
  "typescript": "^5.2.2",
21
21
  "vite": "^4.5.0",
22
22
  "vitest": "~0.34.6",
23
- "@rokkit/core": "1.0.0-next.58",
24
- "shared-config": "1.0.0-next.58"
23
+ "shared-config": "1.0.0-next.59"
25
24
  },
26
25
  "files": [
27
26
  "src"
@@ -40,7 +39,7 @@
40
39
  }
41
40
  },
42
41
  "dependencies": {
43
- "rokkit": "latest"
42
+ "@rokkit/core": "1.0.0-next.59"
44
43
  },
45
44
  "scripts": {
46
45
  "format": "prettier --write .",
package/src/base/core.css CHANGED
@@ -9,7 +9,11 @@
9
9
  /* Body styles */
10
10
  body {
11
11
  @apply flex flex-col w-screen overflow-hidden;
12
- height: var(--viewport-height, 100vh);
12
+ /* height: var(--viewport-height, 100dvh); */
13
+ height: 100vh;
14
+ height: --webkit-fill-available;
15
+ height: 100dvh;
16
+ max-height: 100dvh;
13
17
  }
14
18
 
15
19
  /* Link styles */