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