@appartmint/mint 4.0.11 → 4.0.13
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
|
@@ -56,58 +56,44 @@
|
|
|
56
56
|
& > :last-child:nth-child(#{'3n+1'}),
|
|
57
57
|
& > :last-child:nth-child(#{'3n+2'}),
|
|
58
58
|
& > :nth-last-child(2):nth-child(#{'3n+1'}) {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
width: 100%;
|
|
62
|
-
}
|
|
59
|
+
grid-column: span 1;
|
|
60
|
+
width: 100%;
|
|
63
61
|
}
|
|
64
62
|
|
|
65
63
|
& > :last-child:nth-child(#{'4n+1'}) {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
margin-right: auto;
|
|
71
|
-
}
|
|
64
|
+
grid-column: 2 / span 2;
|
|
65
|
+
width: 50%;
|
|
66
|
+
margin-left: auto;
|
|
67
|
+
margin-right: auto;
|
|
72
68
|
}
|
|
73
69
|
|
|
74
70
|
& > :last-child:nth-child(#{'4n+2'}) {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
margin-right: auto;
|
|
80
|
-
}
|
|
71
|
+
grid-column: 3 / span 2;
|
|
72
|
+
width: 50%;
|
|
73
|
+
margin-left: auto;
|
|
74
|
+
margin-right: auto;
|
|
81
75
|
}
|
|
82
76
|
|
|
83
77
|
& > :nth-last-child(2):nth-child(#{'4n+1'}) {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
margin-right: auto;
|
|
89
|
-
}
|
|
78
|
+
grid-column: 1 / span 2;
|
|
79
|
+
width: 50%;
|
|
80
|
+
margin-left: auto;
|
|
81
|
+
margin-right: auto;
|
|
90
82
|
}
|
|
91
83
|
|
|
92
84
|
& > :last-child:nth-child(#{'4n+3'}) {
|
|
93
|
-
|
|
94
|
-
grid-column: 4;
|
|
95
|
-
}
|
|
85
|
+
grid-column: 4;
|
|
96
86
|
}
|
|
97
87
|
|
|
98
88
|
& > :nth-last-child(2):nth-child(#{'4n+2'}) {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
margin-right: auto;
|
|
104
|
-
}
|
|
89
|
+
grid-column: 2 / span 2;
|
|
90
|
+
width: 50%;
|
|
91
|
+
margin-left: auto;
|
|
92
|
+
margin-right: auto;
|
|
105
93
|
}
|
|
106
94
|
|
|
107
95
|
& > :nth-last-child(3):nth-child(#{'4n+1'}) {
|
|
108
|
-
|
|
109
|
-
grid-column: 1;
|
|
110
|
-
}
|
|
96
|
+
grid-column: 1;
|
|
111
97
|
}
|
|
112
98
|
}
|
|
113
99
|
|
|
@@ -137,11 +123,11 @@
|
|
|
137
123
|
@include grid-4;
|
|
138
124
|
}
|
|
139
125
|
|
|
140
|
-
#{class(portrait)} {
|
|
126
|
+
& > :has(#{class(portrait)}) {
|
|
141
127
|
grid-row: span 2;
|
|
142
128
|
}
|
|
143
129
|
|
|
144
|
-
#{class(landscape)} {
|
|
130
|
+
& > :has(#{class(landscape)}) {
|
|
145
131
|
@include break(sm) {
|
|
146
132
|
grid-column: span 2;
|
|
147
133
|
}
|