@appartmint/mint 0.12.14 → 0.12.15
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.
|
@@ -178,9 +178,16 @@ p {
|
|
|
178
178
|
|
|
179
179
|
/// A list of buttons
|
|
180
180
|
#{class(buttons)} {
|
|
181
|
-
|
|
181
|
+
display: flex;
|
|
182
|
+
align-items: center;
|
|
183
|
+
justify-content: center;
|
|
184
|
+
flex-wrap: wrap;
|
|
182
185
|
gap: 1rem;
|
|
183
186
|
|
|
187
|
+
@include break(xs) {
|
|
188
|
+
justify-content: flex-start;
|
|
189
|
+
}
|
|
190
|
+
|
|
184
191
|
& > * {
|
|
185
192
|
width: 100%;
|
|
186
193
|
|
|
@@ -193,10 +200,6 @@ p {
|
|
|
193
200
|
}
|
|
194
201
|
}
|
|
195
202
|
|
|
196
|
-
&#{class('even')} {
|
|
197
|
-
justify-content: space-evenly;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
203
|
#{class(buttons)} {
|
|
201
204
|
#{class(pill)} {
|
|
202
205
|
width: 100%;
|