gatsby-core-theme 6.1.0 → 6.1.1

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,3 +1,13 @@
1
+ ## [6.1.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v6.1.0...v6.1.1) (2022-04-06)
2
+
3
+
4
+ ### Code Refactoring
5
+
6
+ * replace deprecated with calc in style ([411f685](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/411f685825d020414f76550399ddfeba47903073))
7
+
8
+
9
+ * Merge branch 'tm-2812-fix-sasserrors' into 'master' ([7254b1e](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/7254b1e75029a73ebc2daa76df9e4afefb857428))
10
+
1
11
  # [6.1.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v6.0.1...v6.1.0) (2022-04-06)
2
12
 
3
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "6.1.0",
3
+ "version": "6.1.1",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "main": "index.js",
6
6
  "GATSBY_RECAPTCHA_SITEKEY": "6LfoyvMUAAAAAO4nl_MQnqHb4XdHxEiu5cXgIqeB",
@@ -65,9 +65,9 @@
65
65
  pointer-events: none;
66
66
  border-color: rgba(0, 0, 0, 0);
67
67
  border-top: $height solid $color;
68
- border-right: $width/2 solid transparent;
69
- border-left: $width/2 solid transparent;
70
- margin-left: -$width/2;
68
+ border-right: calc($width / 2) solid transparent;
69
+ border-left: calc($width / 2) solid transparent;
70
+ margin-left: - calc($width / 2);
71
71
  }
72
72
  }
73
73
 
@@ -103,8 +103,7 @@
103
103
  }
104
104
  }
105
105
 
106
-
107
- @mixin half-star($border-color: #fba62f, $half-empty-color: #fba62f , $half-full-color: white) {
106
+ @mixin half-star($border-color: #fba62f, $half-empty-color: #fba62f, $half-full-color: white) {
108
107
  line-height: 2rem;
109
108
  width: 16px;
110
109
  font-weight: normal;