q2-tecton-theme 1.16.3 → 1.17.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "q2-tecton-theme",
3
- "version": "1.16.3",
3
+ "version": "1.17.0",
4
4
  "description": "Default theme for tecton",
5
5
  "main": "./dist/q2-tecton-theme.css",
6
6
  "publishConfig": {
@@ -21,5 +21,5 @@
21
21
  "rollup-plugin-scss": "^3.0.0",
22
22
  "rollup-plugin-serve": "^1.1.0"
23
23
  },
24
- "gitHead": "8ed43f644591353b4c78b95abb7a49e4c6197361"
24
+ "gitHead": "2b206d7a0802cabac13a7419e3c38c60f0204545"
25
25
  }
@@ -1,13 +1,14 @@
1
+ @use "sass:math";
1
2
  @mixin grid() {
2
3
  @for $index from 1 through 12 {
3
4
  &-#{$index} {
4
- flex: 0 0 #{100% * $index/12};
5
- max-width: #{100% * $index/12};
5
+ flex: 0 0 #{100% * math.div($index, 12)};
6
+ max-width: #{100% * math.div($index, 12)};
6
7
  }
7
8
 
8
9
  &-offset-#{$index} {
9
10
  // Deprecated: Will be removed when upgrade path easier
10
- margin-left: #{100% * $index/12};
11
+ margin-left: #{100% * math.div($index, 12)};
11
12
  }
12
13
  }
13
14
  }
@@ -137,6 +137,7 @@ textarea {
137
137
  margin: 0;
138
138
  box-sizing: border-box;
139
139
  font-family: inherit;
140
+ font-stretch: inherit;
140
141
  line-height: inherit;
141
142
  font-size: 100%;
142
143
  }