@stack-spot/portal-layout 2.0.0 → 2.0.1

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.0.1](https://github.com/stack-spot/portal-commons/compare/portal-layout@v2.0.0...portal-layout@v2.0.1) (2024-07-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * default BG color on layout ([8c7d525](https://github.com/stack-spot/portal-commons/commit/8c7d5253d8c7da7318e75d08868e1f90b45a05c2))
9
+
3
10
  ## [2.0.0](https://github.com/stack-spot/portal-commons/compare/portal-layout@v1.1.2...portal-layout@v2.0.0) (2024-06-28)
4
11
 
5
12
 
package/dist/layout.css CHANGED
@@ -27,7 +27,7 @@ body {
27
27
  display: flex;
28
28
  flex-direction: column;
29
29
  flex: 1;
30
- background: var(--light-400);
30
+ background: var(--light-300);
31
31
  font: var(--font);
32
32
  color: var(--light-contrastText);
33
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stack-spot/portal-layout",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/readme.md CHANGED
@@ -58,6 +58,7 @@ const MyApp = () => {
58
58
  }
59
59
  ```
60
60
 
61
+
61
62
  The Header and Menu in a layout are highly customizable. Check the code documentation for more details!
62
63
 
63
64
  ## Modal and right panel pitfalls
package/src/layout.css CHANGED
@@ -27,7 +27,7 @@ body {
27
27
  display: flex;
28
28
  flex-direction: column;
29
29
  flex: 1;
30
- background: var(--light-400);
30
+ background: var(--light-300);
31
31
  font: var(--font);
32
32
  color: var(--light-contrastText);
33
33
  }