@appartmint/mint 2.7.0 → 2.7.2
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.
- package/dist/css/mint.css +30 -29
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/dist/js/index.js +2 -2
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/section/_landing.scss +6 -1
- package/src/scss/imports/global/_grid.scss +24 -52
- package/src/scss/imports/overrides/_amplify.scss +1 -1
- package/src/scss/imports/overrides/_full-calendar.scss +0 -1
|
@@ -7,18 +7,14 @@
|
|
|
7
7
|
grid-template-columns: repeat(12, 1fr);
|
|
8
8
|
|
|
9
9
|
& > * {
|
|
10
|
-
|
|
11
|
-
grid-column: span 6;
|
|
12
|
-
}
|
|
10
|
+
grid-column: span 6;
|
|
13
11
|
}
|
|
14
12
|
|
|
15
13
|
& > :last-child:nth-child(odd) {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
margin-right: auto;
|
|
21
|
-
}
|
|
14
|
+
grid-column: span 12;
|
|
15
|
+
width: 50%;
|
|
16
|
+
margin-left: auto;
|
|
17
|
+
margin-right: auto;
|
|
22
18
|
}
|
|
23
19
|
}
|
|
24
20
|
}
|
|
@@ -28,34 +24,24 @@
|
|
|
28
24
|
grid-template-columns: repeat(12, 1fr);
|
|
29
25
|
|
|
30
26
|
& > * {
|
|
31
|
-
|
|
32
|
-
grid-column: span 4;
|
|
33
|
-
}
|
|
27
|
+
grid-column: span 4;
|
|
34
28
|
}
|
|
35
29
|
|
|
36
30
|
& > :last-child:nth-child(odd) {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
width: 100%;
|
|
40
|
-
}
|
|
31
|
+
grid-column: span 4;
|
|
32
|
+
width: 100%;
|
|
41
33
|
}
|
|
42
34
|
|
|
43
35
|
& > :last-child:nth-child(#{'3n+1'}) {
|
|
44
|
-
|
|
45
|
-
grid-column: 4 / span 6;
|
|
46
|
-
}
|
|
36
|
+
grid-column: 4 / span 6;
|
|
47
37
|
}
|
|
48
38
|
|
|
49
39
|
& > :last-child:nth-child(#{'3n+2'}) {
|
|
50
|
-
|
|
51
|
-
grid-column: 7 / span 6;
|
|
52
|
-
}
|
|
40
|
+
grid-column: 7 / span 6;
|
|
53
41
|
}
|
|
54
42
|
|
|
55
43
|
& > :nth-last-child(2):nth-child(#{'3n+1'}) {
|
|
56
|
-
|
|
57
|
-
grid-column: 1 / span 6;
|
|
58
|
-
}
|
|
44
|
+
grid-column: 1 / span 6;
|
|
59
45
|
}
|
|
60
46
|
}
|
|
61
47
|
}
|
|
@@ -65,55 +51,39 @@
|
|
|
65
51
|
grid-template-columns: repeat(12, 1fr);
|
|
66
52
|
|
|
67
53
|
& > * {
|
|
68
|
-
|
|
69
|
-
grid-column: span 3;
|
|
70
|
-
}
|
|
54
|
+
grid-column: span 3;
|
|
71
55
|
}
|
|
72
56
|
|
|
73
57
|
& > :last-child:nth-child(odd),
|
|
74
58
|
& > :last-child:nth-child(#{'3n+1'}),
|
|
75
59
|
& > :last-child:nth-child(#{'3n+2'}),
|
|
76
60
|
& > :nth-last-child(2):nth-child(#{'3n+1'}) {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
width: 100%;
|
|
80
|
-
}
|
|
61
|
+
grid-column: span 3;
|
|
62
|
+
width: 100%;
|
|
81
63
|
}
|
|
82
64
|
|
|
83
65
|
& > :last-child:nth-child(#{'4n+1'}) {
|
|
84
|
-
|
|
85
|
-
grid-column: 4 / span 6;
|
|
86
|
-
}
|
|
66
|
+
grid-column: 4 / span 6;
|
|
87
67
|
}
|
|
88
68
|
|
|
89
69
|
& > :last-child:nth-child(#{'4n+2'}) {
|
|
90
|
-
|
|
91
|
-
grid-column: 7 / span 6;
|
|
92
|
-
}
|
|
70
|
+
grid-column: 7 / span 6;
|
|
93
71
|
}
|
|
94
72
|
|
|
95
73
|
& > :nth-last-child(2):nth-child(#{'4n+1'}) {
|
|
96
|
-
|
|
97
|
-
grid-column: 1 / span 6;
|
|
98
|
-
}
|
|
74
|
+
grid-column: 1 / span 6;
|
|
99
75
|
}
|
|
100
76
|
|
|
101
77
|
& > :last-child:nth-child(#{'4n+3'}) {
|
|
102
|
-
|
|
103
|
-
grid-column: 9 / span 4;
|
|
104
|
-
}
|
|
78
|
+
grid-column: 9 / span 4;
|
|
105
79
|
}
|
|
106
80
|
|
|
107
81
|
& > :nth-last-child(2):nth-child(#{'4n+2'}) {
|
|
108
|
-
|
|
109
|
-
grid-column: 5 / span 4;
|
|
110
|
-
}
|
|
82
|
+
grid-column: 5 / span 4;
|
|
111
83
|
}
|
|
112
84
|
|
|
113
85
|
& > :nth-last-child(3):nth-child(#{'4n+1'}) {
|
|
114
|
-
|
|
115
|
-
grid-column: 1 / span 4;
|
|
116
|
-
}
|
|
86
|
+
grid-column: 1 / span 4;
|
|
117
87
|
}
|
|
118
88
|
}
|
|
119
89
|
}
|
|
@@ -142,11 +112,13 @@
|
|
|
142
112
|
@include grid-4;
|
|
143
113
|
}
|
|
144
114
|
|
|
145
|
-
#{class(portrait)}
|
|
115
|
+
#{class(portrait)},
|
|
116
|
+
& > :has(#{class(portrait)}) {
|
|
146
117
|
grid-row: span 2;
|
|
147
118
|
}
|
|
148
119
|
|
|
149
|
-
#{class(landscape)}
|
|
120
|
+
#{class(landscape)},
|
|
121
|
+
& > :has(#{class(landscape)}) {
|
|
150
122
|
@include break(sm) {
|
|
151
123
|
grid-column: span 12;
|
|
152
124
|
}
|