@appartmint/mint 0.15.5 → 0.15.7

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
@@ -1261,6 +1261,42 @@ i.fa-envelope {
1261
1261
  transform: translateY(5%);
1262
1262
  }
1263
1263
 
1264
+ input,
1265
+ textarea,
1266
+ select {
1267
+ width: 100%;
1268
+ padding: 0.5rem;
1269
+ border: 2px solid #ccc;
1270
+ border-radius: 1rem;
1271
+ }
1272
+
1273
+ @media (min-width: 480px) {
1274
+ select {
1275
+ width: auto;
1276
+ }
1277
+ }
1278
+
1279
+ textarea {
1280
+ resize: vertical;
1281
+ }
1282
+
1283
+ .mint-toggle {
1284
+ display: flex;
1285
+ align-items: center;
1286
+ gap: 1rem;
1287
+ }
1288
+ .mint-toggle div {
1289
+ display: flex;
1290
+ flex-direction: column;
1291
+ align-items: center;
1292
+ gap: 0.5rem;
1293
+ }
1294
+ @media (min-width: 480px) {
1295
+ .mint-toggle div {
1296
+ flex-direction: row;
1297
+ }
1298
+ }
1299
+
1264
1300
  .mint-check {
1265
1301
  position: relative;
1266
1302
  display: inline-block;
@@ -1295,12 +1331,29 @@ i.fa-envelope {
1295
1331
  filter: grayscale(1);
1296
1332
  transition: filter 300ms, background-color 300ms, left 300ms;
1297
1333
  }
1334
+ .mint-check + span {
1335
+ width: 1.5rem;
1336
+ text-align: center;
1337
+ }
1298
1338
 
1299
1339
  .mint-dropdown {
1300
1340
  display: flex;
1301
1341
  align-items: center;
1302
1342
  flex-wrap: wrap;
1303
- gap: 1rem;
1343
+ }
1344
+ @media (min-width: 480px) {
1345
+ .mint-dropdown {
1346
+ gap: 1rem;
1347
+ }
1348
+ }
1349
+
1350
+ .mint-error {
1351
+ line-height: 0;
1352
+ filter: opacity(0);
1353
+ transition: filter 0.3s;
1354
+ }
1355
+ .mint-error.mint-show {
1356
+ filter: opacity(1);
1304
1357
  }
1305
1358
 
1306
1359
  .mint-pad-auto {