@appartmint/mint 1.2.2 → 1.2.3

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 CHANGED
@@ -546,7 +546,7 @@ p .mint-pill, p .mint-btn, :root:root p [amplify-button], p .mint-select {
546
546
  :root:root [data-amplify-authenticator] [data-amplify-container] .mint-grid.mint-4 .mint-card [data-amplify-router],
547
547
  :root:root .mint-grid.mint-4 [data-amplify-authenticator] [data-amplify-container] [data-amplify-router],
548
548
  :root:root [data-amplify-authenticator] .mint-grid.mint-4 [data-amplify-container] [data-amplify-router] {
549
- height: 100%;
549
+ flex-grow: 1;
550
550
  }
551
551
  @media (min-width: 480px) {
552
552
  .mint-grid.mint-3 .mint-card .mint-title, :root:root .mint-grid.mint-3 [data-amplify-authenticator] [data-amplify-container] .mint-title, :root:root [data-amplify-authenticator] .mint-grid.mint-3 [data-amplify-container] .mint-title,
@@ -1294,6 +1294,28 @@ p .mint-pill, p .mint-btn, :root:root p [amplify-button], p .mint-select {
1294
1294
  padding-top: 56.25% !important;
1295
1295
  }
1296
1296
 
1297
+ .mint-flex {
1298
+ display: flex;
1299
+ align-items: center;
1300
+ justify-content: flex-start;
1301
+ flex-wrap: wrap;
1302
+ }
1303
+ .mint-flex.mint-center {
1304
+ justify-content: center;
1305
+ }
1306
+ .mint-flex.mint-end {
1307
+ justify-content: flex-end;
1308
+ }
1309
+ .mint-flex.mint-between {
1310
+ justify-content: space-between;
1311
+ }
1312
+ .mint-flex.mint-around {
1313
+ justify-content: space-around;
1314
+ }
1315
+ .mint-flex.mint-even {
1316
+ justify-content: space-evenly;
1317
+ }
1318
+
1297
1319
  *, *::before, *::after {
1298
1320
  box-sizing: border-box;
1299
1321
  }