barbican-reset 1.7.7 → 1.7.8

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.
@@ -1,23 +1,24 @@
1
1
 
2
- @mixin br-form-row {
2
+ @mixin br-form-row($mq:sm) {
3
3
  &:not(:last-of-type) {
4
4
  margin-bottom: 1rem;
5
5
  }
6
6
 
7
- @include media-breakpoint-up(sm) {
7
+ @include media-breakpoint-up($mq) {
8
8
  grid-template-columns: 33fr 67fr;
9
+ align-items: flex-start;
9
10
  gap: $gap-account;
10
11
  display: grid;
11
12
  }
12
13
 
13
14
  > label {
14
- @include media-breakpoint-up(sm) {
15
+ @include media-breakpoint-up($mq) {
15
16
  margin-top: 1rem;
16
17
  }
17
18
  }
18
19
 
19
20
  label {
20
- @include media-breakpoint-down(sm) {
21
+ @include media-breakpoint-down($mq) {
21
22
  margin-bottom: 0.5rem;
22
23
  }
23
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barbican-reset",
3
- "version": "1.7.7",
3
+ "version": "1.7.8",
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": {