@knapsack/sandbox-components 4.71.14 → 4.71.15

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # v4.71.14 (Wed Dec 04 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix sandbox header width [#5243](https://github.com/knapsack-labs/app-monorepo/pull/5243) ([@GormanDesign](https://github.com/GormanDesign))
6
+ - fix sandbox header width ([@GormanDesign](https://github.com/GormanDesign))
7
+
8
+ #### Authors: 1
9
+
10
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
11
+
12
+ ---
13
+
1
14
  # v4.71.13 (Wed Dec 04 2024)
2
15
 
3
16
  #### 🐛 Bug Fix
@@ -1463,7 +1463,7 @@ body {
1463
1463
  background-color: var(--brand-color);
1464
1464
  padding: 8px 16px;
1465
1465
  padding: var(--spacing-small) var(--spacing-large);
1466
- width: 100%;
1466
+ width: 100vw;
1467
1467
  position: relative;
1468
1468
  height: 60px;
1469
1469
  z-index: 10;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knapsack/sandbox-components",
3
3
  "description": "",
4
- "version": "4.71.14",
4
+ "version": "4.71.15",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./css": "./dist/css/ks-sandbox-styles.css",
@@ -44,11 +44,11 @@
44
44
  "vue": "^3.5.12"
45
45
  },
46
46
  "devDependencies": {
47
- "@knapsack/eslint-config-starter": "4.71.14",
48
- "@knapsack/postcss-config-starter": "4.71.14",
49
- "@knapsack/prettier-config": "4.71.14",
50
- "@knapsack/sandbox-tokens": "4.71.14",
51
- "@knapsack/typescript-config-starter": "4.71.14",
47
+ "@knapsack/eslint-config-starter": "4.71.15",
48
+ "@knapsack/postcss-config-starter": "4.71.15",
49
+ "@knapsack/prettier-config": "4.71.15",
50
+ "@knapsack/sandbox-tokens": "4.71.15",
51
+ "@knapsack/typescript-config-starter": "4.71.15",
52
52
  "@types/node": "^20.17.8",
53
53
  "@types/react": "^18.3.12",
54
54
  "esbuild": "^0.24.0",
@@ -68,5 +68,5 @@
68
68
  "directory": "apps/ui/libs/sandbox-components",
69
69
  "type": "git"
70
70
  },
71
- "gitHead": "c17e74b023cd7d642d374bc36d008410421a1040"
71
+ "gitHead": "f83b864721e656c036ee9ff691534c220445a2eb"
72
72
  }
@@ -1,7 +1,7 @@
1
1
  .header {
2
2
  background-color: var(--brand-color);
3
3
  padding: var(--spacing-small) var(--spacing-large);
4
- width: 100%;
4
+ width: 100vw;
5
5
  position: relative;
6
6
  height: 60px;
7
7
  z-index: 10;