@appartmint/mint 4.2.20 → 4.2.22

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@appartmint/mint",
3
3
  "author": "App Art Mint LLC",
4
- "version": "4.2.20",
4
+ "version": "4.2.22",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -89,6 +89,10 @@
89
89
  }
90
90
 
91
91
  /// Grid styles
92
+ :root {
93
+ @include css-var(grid-fit-w, break(xs) * 1px);
94
+ }
95
+
92
96
  #{class(grid)} {
93
97
  display: grid;
94
98
  grid-template-columns: 1fr;
@@ -9,6 +9,10 @@
9
9
  @use '../../util' as *;
10
10
 
11
11
  /// Panel Styles
12
+ html#{class(panel-open)} {
13
+ overflow: hidden;
14
+ }
15
+
12
16
  #{class(panel)} {
13
17
  &#{class(right)} {
14
18
  #{class(panel-wrapper)} {
@@ -101,4 +105,4 @@
101
105
  margin: 0;
102
106
  }
103
107
  }
104
- }
108
+ }