barbican-reset 1.3.5 → 1.3.6

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.
@@ -211,6 +211,13 @@
211
211
  );
212
212
  }
213
213
 
214
+ @mixin btn-cta {
215
+ @include button-solid(
216
+ $background: $c-grey-night,
217
+ $display: 'flex');
218
+ fill: $white;
219
+ }
220
+
214
221
  @mixin btn-invisible {
215
222
  &, &:focus {
216
223
  background: transparent;
@@ -1,5 +1,7 @@
1
1
  <template>
2
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 7H3.83L9.42 1.41L8 0L0 8L8 16L9.41 14.59L3.83 9H16V7Z" fill="black"/></svg>
2
+ <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M16 7H3.83L9.42 1.41L8 0L0 8L8 16L9.41 14.59L3.83 9H16V7Z" />
4
+ </svg>
3
5
  </template>
4
6
 
5
7
  <script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "A collection of useful scss imports and js scripts, that provide consistent styling and functionality across barbican projects.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/scss/_btn.scss CHANGED
@@ -64,6 +64,10 @@
64
64
  @include btn-power-login;
65
65
  }
66
66
 
67
+ &.btn-cta {
68
+ @include btn-cta;
69
+ }
70
+
67
71
  &.btn-invisible {
68
72
  @include btn-invisible;
69
73
  }