@appartmint/mint 0.14.2 → 0.14.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 +6 -0
- 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/package.json +1 -1
- package/src/scss/imports/global/_global.scss +1 -0
- package/src/scss/imports/global/_text.scss +4 -0
- package/src/scss/imports/global/_texture.scss +6 -1
package/dist/css/mint.css
CHANGED
|
@@ -1114,6 +1114,7 @@ main {
|
|
|
1114
1114
|
position: relative;
|
|
1115
1115
|
width: 100%;
|
|
1116
1116
|
min-height: calc(100vh - var(--mint-header-height));
|
|
1117
|
+
overflow: hidden;
|
|
1117
1118
|
z-index: 1000;
|
|
1118
1119
|
}
|
|
1119
1120
|
main > router-outlet + * {
|
|
@@ -2495,6 +2496,11 @@ p, .mint-p {
|
|
|
2495
2496
|
.mint-disclaim {
|
|
2496
2497
|
font-size: 0.875rem;
|
|
2497
2498
|
}
|
|
2499
|
+
@media (max-width: 480px) {
|
|
2500
|
+
.mint-disclaim {
|
|
2501
|
+
text-align: center;
|
|
2502
|
+
}
|
|
2503
|
+
}
|
|
2498
2504
|
|
|
2499
2505
|
.mint-frame {
|
|
2500
2506
|
height: fit-content;
|