@appartmint/mint 1.0.9 → 1.0.11
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 +13 -1
- package/dist/css/mint.css.map +1 -1
- package/dist/css/mint.min.css +1 -1
- package/dist/css/mint.min.css.map +1 -1
- package/dist/js/imports/models/page.d.ts +5 -1
- package/dist/js/imports/models/page.d.ts.map +1 -1
- package/dist/js/index.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/_header.scss +0 -2
- package/src/scss/imports/global/_inputs.scss +16 -1
- package/src/ts/imports/models/page.ts +7 -1
package/dist/css/mint.css
CHANGED
|
@@ -1080,7 +1080,6 @@ app-footer::before {
|
|
|
1080
1080
|
@media (min-width: 480px) {
|
|
1081
1081
|
#mint-header #mint-wrapper a,
|
|
1082
1082
|
#mint-header #mint-wrapper button {
|
|
1083
|
-
font-size: 4em;
|
|
1084
1083
|
padding: 1rem 1.5rem;
|
|
1085
1084
|
}
|
|
1086
1085
|
#mint-header #mint-wrapper a i,
|
|
@@ -1668,6 +1667,19 @@ textarea {
|
|
|
1668
1667
|
filter: opacity(1);
|
|
1669
1668
|
}
|
|
1670
1669
|
|
|
1670
|
+
.mint-array-item {
|
|
1671
|
+
display: flex;
|
|
1672
|
+
align-items: center;
|
|
1673
|
+
justify-content: flex-end;
|
|
1674
|
+
gap: 0.5rem;
|
|
1675
|
+
}
|
|
1676
|
+
.mint-array-item :first-child {
|
|
1677
|
+
flex-grow: 1;
|
|
1678
|
+
}
|
|
1679
|
+
.mint-array-item :last-child {
|
|
1680
|
+
flex-shrink: 0;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1671
1683
|
.mint-pad-auto {
|
|
1672
1684
|
padding-left: auto;
|
|
1673
1685
|
padding-right: auto;
|