create-sitecore-jss 22.2.0-canary.72 → 22.2.0-canary.73
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.
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
@import '~bootstrap/scss/variables';
|
|
3
3
|
@import '~bootstrap/scss/mixins';
|
|
4
4
|
|
|
5
|
+
$breakpoints: sm, md, lg, xl, xxl;
|
|
6
|
+
|
|
5
7
|
.position-left,
|
|
6
8
|
.position-left * {
|
|
7
9
|
text-align: left !important;
|
|
@@ -29,57 +31,23 @@
|
|
|
29
31
|
text-align-last: center !important;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
|
-
@
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
margin-right: 0 !important;
|
|
47
|
-
}
|
|
48
|
-
.me-md-auto {
|
|
49
|
-
margin-right: auto !important;
|
|
50
|
-
margin-left: 0 !important;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
@include media-breakpoint-up(lg) {
|
|
55
|
-
.ms-lg-auto {
|
|
56
|
-
margin-left: auto !important;
|
|
57
|
-
margin-right: 0 !important;
|
|
58
|
-
}
|
|
59
|
-
.me-lg-auto {
|
|
60
|
-
margin-right: auto !important;
|
|
61
|
-
margin-left: 0 !important;
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
@include media-breakpoint-up(xl) {
|
|
66
|
-
.ms-xl-auto {
|
|
67
|
-
margin-left: auto !important;
|
|
68
|
-
margin-right: 0 !important;
|
|
69
|
-
}
|
|
70
|
-
.me-xl-auto {
|
|
71
|
-
margin-right: auto !important;
|
|
72
|
-
margin-left: 0 !important;
|
|
34
|
+
@mixin auto-margins($breakpoint) {
|
|
35
|
+
@include media-breakpoint-up(#{$breakpoint}) {
|
|
36
|
+
.ms-#{$breakpoint}-auto {
|
|
37
|
+
margin-left: auto !important;
|
|
38
|
+
margin-right: 0 !important;
|
|
39
|
+
}
|
|
40
|
+
.me-#{$breakpoint}-auto {
|
|
41
|
+
margin-right: auto !important;
|
|
42
|
+
margin-left: 0 !important;
|
|
43
|
+
}
|
|
44
|
+
.mx-#{$breakpoint}-auto {
|
|
45
|
+
margin-right: auto !important;
|
|
46
|
+
margin-left: auto !important;
|
|
47
|
+
}
|
|
73
48
|
}
|
|
74
49
|
}
|
|
75
50
|
|
|
76
|
-
@
|
|
77
|
-
|
|
78
|
-
margin-left: auto !important;
|
|
79
|
-
margin-right: 0 !important;
|
|
80
|
-
}
|
|
81
|
-
.me-xxl-auto {
|
|
82
|
-
margin-right: auto !important;
|
|
83
|
-
margin-left: 0 !important;
|
|
84
|
-
}
|
|
51
|
+
@each $breakpoint in $breakpoints {
|
|
52
|
+
@include auto-margins($breakpoint);
|
|
85
53
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-sitecore-jss",
|
|
3
|
-
"version": "22.2.0-canary.
|
|
3
|
+
"version": "22.2.0-canary.73",
|
|
4
4
|
"description": "Sitecore JSS initializer",
|
|
5
5
|
"bin": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"ts-node": "^10.9.1",
|
|
64
64
|
"typescript": "~4.9.5"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "76ac9f115f392360094fc30f727a4ee6f5825d34"
|
|
67
67
|
}
|