@appartmint/mint 0.15.6 → 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,14 +1261,38 @@ 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
|
+
|
|
1264
1283
|
.mint-toggle {
|
|
1284
|
+
display: flex;
|
|
1285
|
+
align-items: center;
|
|
1286
|
+
gap: 1rem;
|
|
1287
|
+
}
|
|
1288
|
+
.mint-toggle div {
|
|
1265
1289
|
display: flex;
|
|
1266
1290
|
flex-direction: column;
|
|
1267
1291
|
align-items: center;
|
|
1268
1292
|
gap: 0.5rem;
|
|
1269
1293
|
}
|
|
1270
1294
|
@media (min-width: 480px) {
|
|
1271
|
-
.mint-toggle {
|
|
1295
|
+
.mint-toggle div {
|
|
1272
1296
|
flex-direction: row;
|
|
1273
1297
|
}
|
|
1274
1298
|
}
|
|
@@ -1307,12 +1331,29 @@ i.fa-envelope {
|
|
|
1307
1331
|
filter: grayscale(1);
|
|
1308
1332
|
transition: filter 300ms, background-color 300ms, left 300ms;
|
|
1309
1333
|
}
|
|
1334
|
+
.mint-check + span {
|
|
1335
|
+
width: 1.5rem;
|
|
1336
|
+
text-align: center;
|
|
1337
|
+
}
|
|
1310
1338
|
|
|
1311
1339
|
.mint-dropdown {
|
|
1312
1340
|
display: flex;
|
|
1313
1341
|
align-items: center;
|
|
1314
1342
|
flex-wrap: wrap;
|
|
1315
|
-
|
|
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);
|
|
1316
1357
|
}
|
|
1317
1358
|
|
|
1318
1359
|
.mint-pad-auto {
|