gatsby-core-theme 20.0.10 → 20.0.11

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
+ ## [20.0.11](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v20.0.10...v20.0.11) (2023-04-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * added new param with border gradient ([1592f6a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/1592f6aa9b6154a8c5dc5a7a0f835dd1b1112224))
7
+
8
+
9
+ * Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/gatsby-themes ([5e10f1a](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/5e10f1acb9d6a59227cba0ff2c2ce0233bcee04e))
10
+
1
11
  ## [20.0.10](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v20.0.9...v20.0.10) (2023-04-19)
2
12
 
3
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "20.0.10",
3
+ "version": "20.0.11",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "main": "index.js",
6
6
  "GATSBY_RECAPTCHA_SITEKEY": "6LfoyvMUAAAAAO4nl_MQnqHb4XdHxEiu5cXgIqeB",
@@ -127,7 +127,7 @@
127
127
  }
128
128
 
129
129
 
130
- @mixin border-gradient($color-1, $color-2, $bgcolor) {
130
+ @mixin border-gradient($color-1, $color-2, $bgcolor, $radius: .8rem) {
131
131
  background: $bgcolor;
132
132
  &:before {
133
133
  content: '';
@@ -136,7 +136,7 @@
136
136
  left: 0;
137
137
  right: 0;
138
138
  bottom: 0;
139
- border-radius: 8px;
139
+ border-radius: $radius;
140
140
  border: 2px solid transparent;
141
141
  background: $color-1, $color-2 border-box;
142
142
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);