@appartmint/mint 1.0.14 → 1.0.16
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 +15 -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/components/_header.scss +1 -0
- package/src/scss/imports/global/_global.scss +3 -0
- package/src/scss/imports/util/_util.scss +1 -1
package/dist/css/mint.css
CHANGED
|
@@ -968,6 +968,7 @@ app-footer::before {
|
|
|
968
968
|
}
|
|
969
969
|
#mint-header .mint-logo img {
|
|
970
970
|
max-height: var(--mint-header-height);
|
|
971
|
+
width: auto;
|
|
971
972
|
}
|
|
972
973
|
#mint-header [aria-controls=mint-wrapper] {
|
|
973
974
|
display: inline-block;
|
|
@@ -1362,6 +1363,20 @@ main > router-outlet + * {
|
|
|
1362
1363
|
justify-content: center;
|
|
1363
1364
|
flex-grow: 1;
|
|
1364
1365
|
width: 100%;
|
|
1366
|
+
padding: 0.25rem;
|
|
1367
|
+
}
|
|
1368
|
+
main > router-outlet + * {
|
|
1369
|
+
padding: 4px;
|
|
1370
|
+
}
|
|
1371
|
+
@media (min-width: 480px) {
|
|
1372
|
+
main > router-outlet + * {
|
|
1373
|
+
padding: calc(4px + 12 * ((100vw - 480px) / 288));
|
|
1374
|
+
}
|
|
1375
|
+
}
|
|
1376
|
+
@media (min-width: 768px) {
|
|
1377
|
+
main > router-outlet + * {
|
|
1378
|
+
padding: 16px;
|
|
1379
|
+
}
|
|
1365
1380
|
}
|
|
1366
1381
|
main > router-outlet + * + :not(mint-footer-partial) {
|
|
1367
1382
|
height: 0;
|