natura11y 1.2.1 → 1.2.2

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.
@@ -152,7 +152,6 @@
152
152
  font-size: var(--font-size-md);
153
153
  }
154
154
 
155
-
156
155
  .global-header > * {
157
156
  padding: var(--global-header-padding-y) var(--global-header-padding-x);
158
157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natura11y",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Natura11y is an open-source design system for creating modern, accessible websites.",
5
5
  "private": false,
6
6
  "scripts": {
@@ -91,23 +91,22 @@ In this file:
91
91
  @include breakpoints.breakpoints-up($breakpoint) {
92
92
  $mod: breakpoints.breakpoint-modifier($breakpoint, breakpoints.$breakpoints);
93
93
 
94
- .flex-grow-1 {
94
+ .flex-grow-1#{$mod} {
95
95
  flex-grow: 1 !important;
96
96
  }
97
97
 
98
- .flex-grow-0 {
98
+ .flex-grow-0#{$mod} {
99
99
  flex-grow: 0 !important;
100
100
  }
101
101
 
102
- .flex-shrink-1 {
102
+ .flex-shrink-1#{$mod} {
103
103
  flex-shrink: 1 !important;
104
104
  }
105
105
 
106
- .flex-shrink-0 {
106
+ .flex-shrink-0#{$mod} {
107
107
  flex-shrink: 0 !important;
108
108
  }
109
109
 
110
-
111
110
  }
112
111
  }
113
112