@stack-spot/portal-layout 2.32.3 → 2.32.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.32.4](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.32.3...portal-layout@v2.32.4) (2025-06-17)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * menu section min height ([#1072](https://github.com/stack-spot/portal-commons/issues/1072)) ([b910193](https://github.com/stack-spot/portal-commons/commit/b910193c7ffe6b9a2c30c042f7554aa9f2b8baca))
9
+
3
10
  ## [2.32.3](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.32.2...portal-layout@v2.32.3) (2025-06-12)
4
11
 
5
12
 
package/dist/layout.css CHANGED
@@ -202,7 +202,8 @@ body {
202
202
  position: relative;
203
203
  border-right: 1px solid var(--light-300);
204
204
  border-top: 1px solid var(--light-300);
205
- min-height: calc(100% - 11px); /* 10px from padding, 1px from border */
205
+ min-height: 100%;
206
+ box-sizing: border-box;
206
207
  }
207
208
 
208
209
  #menuSections .sections-footer {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stack-spot/portal-layout",
3
- "version": "2.32.3",
3
+ "version": "2.32.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/layout.css CHANGED
@@ -202,7 +202,8 @@ body {
202
202
  position: relative;
203
203
  border-right: 1px solid var(--light-300);
204
204
  border-top: 1px solid var(--light-300);
205
- min-height: calc(100% - 11px); /* 10px from padding, 1px from border */
205
+ min-height: 100%;
206
+ box-sizing: border-box;
206
207
  }
207
208
 
208
209
  #menuSections .sections-footer {