@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 +7 -0
- package/dist/layout.css +2 -1
- package/package.json +1 -1
- package/src/layout.css +2 -1
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:
|
|
205
|
+
min-height: 100%;
|
|
206
|
+
box-sizing: border-box;
|
|
206
207
|
}
|
|
207
208
|
|
|
208
209
|
#menuSections .sections-footer {
|
package/package.json
CHANGED
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:
|
|
205
|
+
min-height: 100%;
|
|
206
|
+
box-sizing: border-box;
|
|
206
207
|
}
|
|
207
208
|
|
|
208
209
|
#menuSections .sections-footer {
|