@shift72/core-template 0.4.3 → 0.4.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/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased](https://github.com/shift72/core-template/compare/0.4.2...HEAD)
3
+ ## [Unreleased](https://github.com/shift72/core-template/compare/0.4.4...HEAD)
4
+
5
+ ## [0.4.4](https://github.com/shift72/core-template/compare/0.4.3...0.4.4)
6
+ - Fixed usage of obsolete $primary var for trailer button
7
+
8
+ ### Added
9
+ - Awards categories
4
10
 
5
11
  ## [0.4.3](https://github.com/shift72/core-template/compare/0.4.2...0.4.3)
6
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shift72/core-template",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Shift72 core template",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -115,8 +115,8 @@
115
115
  background: transparent;
116
116
 
117
117
  .s72-icon-play circle {
118
- fill: $primary;
119
- stroke: $primary;
118
+ fill: var(--primary);
119
+ stroke: var(--primary);
120
120
  stroke-width: 3px;
121
121
  }
122
122
 
@@ -136,7 +136,7 @@
136
136
 
137
137
  .verb {
138
138
  background: transparent;
139
- color: $primary;
139
+ color:var(--primary);
140
140
  }
141
141
  }
142
142
 
@@ -152,7 +152,7 @@
152
152
 
153
153
  circle {
154
154
  fill: transparent;
155
- stroke: $primary;
155
+ stroke: var(--primary);
156
156
  stroke-width: 3px;
157
157
  }
158
158