@appartmint/mint 0.12.28 → 0.13.0
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 +19 -9
- 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/index.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/_buttons.scss +1 -0
- package/src/scss/imports/components/_header.scss +19 -7
- package/src/scss/imports/global/_global.scss +10 -10
package/dist/css/mint.css
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
.mint-btn,
|
|
14
14
|
.mint-btn-icon,
|
|
15
15
|
.mint-pill {
|
|
16
|
+
width: fit-content;
|
|
16
17
|
max-width: 100%;
|
|
17
18
|
text-decoration: none;
|
|
18
19
|
text-overflow: ellipsis;
|
|
@@ -660,14 +661,16 @@ app-footer::before {
|
|
|
660
661
|
height: auto !important;
|
|
661
662
|
margin-bottom: 1rem !important;
|
|
662
663
|
}
|
|
663
|
-
#mint-header::before {
|
|
664
|
+
#mint-header:not(.mint-border)::before {
|
|
664
665
|
content: "";
|
|
665
666
|
position: absolute;
|
|
666
667
|
top: 0;
|
|
667
668
|
left: 0;
|
|
668
669
|
width: 100%;
|
|
669
|
-
height: var(--mint-header-height);
|
|
670
670
|
background: var(--mint-header-back);
|
|
671
|
+
}
|
|
672
|
+
#mint-header::before {
|
|
673
|
+
height: var(--mint-header-height);
|
|
671
674
|
z-index: -1;
|
|
672
675
|
}
|
|
673
676
|
#mint-header nav > ul {
|
|
@@ -809,8 +812,13 @@ app-footer::before {
|
|
|
809
812
|
width: 100%;
|
|
810
813
|
}
|
|
811
814
|
}
|
|
815
|
+
#mint-header #mint-wrapper a {
|
|
816
|
+
display: flex;
|
|
817
|
+
}
|
|
812
818
|
#mint-header #mint-wrapper a,
|
|
813
819
|
#mint-header #mint-wrapper button {
|
|
820
|
+
align-items: center;
|
|
821
|
+
justify-content: center;
|
|
814
822
|
font-family: serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
|
|
815
823
|
font-size: 3em;
|
|
816
824
|
padding: 0.5rem;
|
|
@@ -825,7 +833,7 @@ app-footer::before {
|
|
|
825
833
|
}
|
|
826
834
|
#mint-header #mint-wrapper a i,
|
|
827
835
|
#mint-header #mint-wrapper button i {
|
|
828
|
-
font-size: 0.
|
|
836
|
+
font-size: 0.5em;
|
|
829
837
|
}
|
|
830
838
|
}
|
|
831
839
|
#mint-header #mint-wrapper a:hover,
|
|
@@ -1072,12 +1080,6 @@ nav ul > li > ul {
|
|
|
1072
1080
|
white-space: nowrap;
|
|
1073
1081
|
}
|
|
1074
1082
|
}
|
|
1075
|
-
a i:first-child {
|
|
1076
|
-
margin-right: 0.25em;
|
|
1077
|
-
}
|
|
1078
|
-
a i:last-child {
|
|
1079
|
-
margin-left: 0.25em;
|
|
1080
|
-
}
|
|
1081
1083
|
|
|
1082
1084
|
button,
|
|
1083
1085
|
a[routerLink] {
|
|
@@ -1088,6 +1090,14 @@ a,
|
|
|
1088
1090
|
button {
|
|
1089
1091
|
font-size: inherit;
|
|
1090
1092
|
}
|
|
1093
|
+
a i:first-child,
|
|
1094
|
+
button i:first-child {
|
|
1095
|
+
margin-right: 0.5em;
|
|
1096
|
+
}
|
|
1097
|
+
a i:last-child,
|
|
1098
|
+
button i:last-child {
|
|
1099
|
+
margin-left: 0.5em;
|
|
1100
|
+
}
|
|
1091
1101
|
|
|
1092
1102
|
img,
|
|
1093
1103
|
video {
|