@aotearoan/neon 11.0.2 → 11.0.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aotearoan/neon",
3
3
  "description": "Neon is a lightweight design library of Vue 3 components with minimal dependencies.",
4
- "version": "11.0.2",
4
+ "version": "11.0.4",
5
5
  "main": "./dist/neon.cjs.js",
6
6
  "module": "./dist/neon.es.js",
7
7
  "types": "./dist/src/neon.d.ts",
@@ -382,9 +382,6 @@
382
382
  flex-direction: row;
383
383
  justify-content: flex-end;
384
384
  align-items: center;
385
-
386
- & > .neon-button + .neon-button {
387
- margin-left: calc(4 * var(--neon-base-space));
388
- }
385
+ gap: calc(4 * var(--neon-base-space));
389
386
  }
390
387
  }
@@ -5,7 +5,7 @@
5
5
  .neon-page {
6
6
  position: relative;
7
7
  left: 0;
8
- width: 100%;
8
+ width: 100vw;
9
9
 
10
10
  &--with-top-nav .neon-page__container {
11
11
  @include responsive.responsive(larger-than-tablet) {
@@ -14,7 +14,6 @@
14
14
  &__label {
15
15
  user-select: none;
16
16
  cursor: pointer;
17
- padding: calc(2 * var(--neon-base-space)) 0;
18
17
  display: flex;
19
18
  align-items: center;
20
19
  justify-content: center;
@@ -30,6 +29,10 @@
30
29
  }
31
30
 
32
31
  &--toggle {
32
+ .neon-toggle__label {
33
+ padding: calc(2 * var(--neon-base-space)) calc(3 * var(--neon-base-space));
34
+ }
35
+
33
36
  @include toggle-mixins.toggle-layout;
34
37
 
35
38
  @each $color in palettes.$neon-functional-colors {
@@ -74,6 +77,10 @@
74
77
  }
75
78
 
76
79
  &--radio-buttons {
80
+ .neon-toggle__label {
81
+ padding: calc(2 * var(--neon-base-space)) 0;
82
+ }
83
+
77
84
  @include toggle-mixins.radio-button-layout;
78
85
 
79
86
  @each $color in palettes.$neon-functional-colors {