@appdirect/sfb-theme-plaza 0.0.55 → 0.0.57

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.
@@ -9,8 +9,8 @@
9
9
  position: relative;
10
10
  width: 100%;
11
11
  min-height: 1px; // Prevent columns from collapsing when empty
12
- padding-right: ($gutter / 2);
13
- padding-left: ($gutter / 2);
12
+ padding-right: calc($gutter / 2);
13
+ padding-left: calc($gutter / 2);
14
14
  }
15
15
 
16
16
  @each $breakpoint in map-keys($breakpoints) {
@@ -4,8 +4,8 @@
4
4
 
5
5
  @mixin make-container() {
6
6
  width: 100%;
7
- padding-right: ($grid-gutter-width / 2);
8
- padding-left: ($grid-gutter-width / 2);
7
+ padding-right: calc($grid-gutter-width / 2);
8
+ padding-left: calc($grid-gutter-width / 2);
9
9
  margin-right: auto;
10
10
  margin-left: auto;
11
11
  }
@@ -23,8 +23,8 @@
23
23
  @mixin make-row() {
24
24
  display: flex;
25
25
  flex-wrap: wrap;
26
- margin-right: ($grid-gutter-width / -2);
27
- margin-left: ($grid-gutter-width / -2);
26
+ margin-right: calc($grid-gutter-width / -2);
27
+ margin-left: calc($grid-gutter-width / -2);
28
28
  }
29
29
 
30
30
  @mixin make-col-ready() {
@@ -34,19 +34,19 @@
34
34
  // later on to override this initial width.
35
35
  width: 100%;
36
36
  min-height: 1px; // Prevent collapsing
37
- padding-right: ($grid-gutter-width / 2);
38
- padding-left: ($grid-gutter-width / 2);
37
+ padding-right: calc($grid-gutter-width / 2);
38
+ padding-left: calc($grid-gutter-width / 2);
39
39
  }
40
40
 
41
41
  @mixin make-col($size, $columns: $grid-columns) {
42
- flex: 0 0 percentage($size / $columns);
42
+ flex: 0 0 percentage(calc($size / $columns));
43
43
  // Add a `max-width` to ensure content within each column does not blow out
44
44
  // the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
45
45
  // do not appear to require this.
46
- max-width: percentage($size / $columns);
46
+ max-width: percentage(calc($size / $columns));
47
47
  }
48
48
 
49
49
  @mixin make-col-offset($size, $columns: $grid-columns) {
50
- $num: $size / $columns;
50
+ $num: calc($size / $columns);
51
51
  margin-left: if($num == 0, 0, percentage($num));
52
52
  }
@@ -139,6 +139,8 @@
139
139
  }
140
140
  }
141
141
  &-link {
142
+ margin: 0;
143
+ border-left: none;
142
144
  font-size: 14px;
143
145
  font-weight: 500;
144
146
  line-height: 17px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appdirect/sfb-theme-plaza",
3
- "version": "0.0.55",
3
+ "version": "0.0.57",
4
4
  "description": "A modern theme built with react components that can be customized with Storefront Builder.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/settings.json CHANGED
@@ -495,7 +495,7 @@
495
495
  "type" : "SLIDES"
496
496
  },
497
497
  "delay" : {
498
- "value" : "5",
498
+ "value" : 5,
499
499
  "type" : "DROPDOWN"
500
500
  },
501
501
  "backgroundImg" : {
@@ -533,7 +533,7 @@
533
533
  "type" : "TOGGLE_CHECK"
534
534
  },
535
535
  "height" : {
536
- "value" : "400",
536
+ "value" : 400,
537
537
  "type" : "DROPDOWN"
538
538
  }
539
539
  },
@@ -589,7 +589,7 @@
589
589
  "type" : "RADIO"
590
590
  },
591
591
  "maxRows" : {
592
- "value" : "2",
592
+ "value" : 2,
593
593
  "type" : "RADIO"
594
594
  },
595
595
  "size" : {
@@ -674,7 +674,7 @@
674
674
  "type" : "RADIO"
675
675
  },
676
676
  "maxRows" : {
677
- "value" : "2",
677
+ "value" : 2,
678
678
  "type" : "RADIO"
679
679
  },
680
680
  "size" : {