barbican-reset 1.1.4 → 1.1.5

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.
@@ -155,6 +155,13 @@
155
155
  }
156
156
  }
157
157
 
158
+ @mixin btn-membership-card {
159
+ @include button_outline(
160
+ $color: $white,
161
+ $background: transparent
162
+ );
163
+ }
164
+
158
165
  @mixin btn-expand {
159
166
  display: block;
160
167
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
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/_atomic.scss CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- $rules: "margin-top", "margin-bottom";
2
+ $rules: "margin-top", "margin-bottom", "min-height";
3
3
 
4
4
  @each $rule in $rules {
5
5
  @for $i from 1 to 5 {
@@ -21,6 +21,10 @@ $rules: "margin-top", "margin-bottom";
21
21
  font-size: $font-size-lg;
22
22
  }
23
23
 
24
+ .font-size-h3 {
25
+ font-size: $h3-font-size;
26
+ }
27
+
24
28
  .text-align-right {
25
29
  text-align: right;
26
30
  }
package/scss/_btn.scss CHANGED
@@ -44,6 +44,10 @@
44
44
  @include btn-remove-ticket;
45
45
  }
46
46
 
47
+ &.btn-membership-card {
48
+ @include btn-membership-card;
49
+ }
50
+
47
51
  // modifyers
48
52
  &.expand {
49
53
  @include btn-expand;