@appartmint/mint 0.12.30 → 0.13.1
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 +17 -7
- 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/_buttons.scss +1 -0
- package/src/scss/imports/components/_header.scss +5 -1
- package/src/scss/imports/global/_global.scss +10 -10
- package/src/scss/imports/global/_texture.scss +2 -1
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;
|
|
@@ -783,7 +784,6 @@ app-footer::before {
|
|
|
783
784
|
#mint-header #mint-wrapper nav {
|
|
784
785
|
height: calc(100vh - var(--mint-header-height));
|
|
785
786
|
height: calc(100dvh - var(--mint-header-height));
|
|
786
|
-
background: var(--mint-back);
|
|
787
787
|
overflow: auto;
|
|
788
788
|
background-repeat: repeat;
|
|
789
789
|
}
|
|
@@ -794,6 +794,9 @@ app-footer::before {
|
|
|
794
794
|
justify-content: center;
|
|
795
795
|
}
|
|
796
796
|
}
|
|
797
|
+
#mint-header #mint-wrapper nav:not(.mint-border) {
|
|
798
|
+
background: var(--mint-back);
|
|
799
|
+
}
|
|
797
800
|
#mint-header #mint-wrapper nav > :last-child {
|
|
798
801
|
margin-bottom: 0;
|
|
799
802
|
}
|
|
@@ -821,6 +824,7 @@ app-footer::before {
|
|
|
821
824
|
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;
|
|
822
825
|
font-size: 3em;
|
|
823
826
|
padding: 0.5rem;
|
|
827
|
+
margin: 0.5rem 0;
|
|
824
828
|
text-align: center;
|
|
825
829
|
border-radius: 1rem;
|
|
826
830
|
}
|
|
@@ -1079,12 +1083,6 @@ nav ul > li > ul {
|
|
|
1079
1083
|
white-space: nowrap;
|
|
1080
1084
|
}
|
|
1081
1085
|
}
|
|
1082
|
-
a i:first-child {
|
|
1083
|
-
margin-right: 0.25em;
|
|
1084
|
-
}
|
|
1085
|
-
a i:last-child {
|
|
1086
|
-
margin-left: 0.25em;
|
|
1087
|
-
}
|
|
1088
1086
|
|
|
1089
1087
|
button,
|
|
1090
1088
|
a[routerLink] {
|
|
@@ -1095,6 +1093,14 @@ a,
|
|
|
1095
1093
|
button {
|
|
1096
1094
|
font-size: inherit;
|
|
1097
1095
|
}
|
|
1096
|
+
a i:first-child,
|
|
1097
|
+
button i:first-child {
|
|
1098
|
+
margin-right: 0.5em;
|
|
1099
|
+
}
|
|
1100
|
+
a i:last-child,
|
|
1101
|
+
button i:last-child {
|
|
1102
|
+
margin-left: 0.5em;
|
|
1103
|
+
}
|
|
1098
1104
|
|
|
1099
1105
|
img,
|
|
1100
1106
|
video {
|
|
@@ -2350,6 +2356,10 @@ p, .mint-p {
|
|
|
2350
2356
|
font-size: 0.875rem;
|
|
2351
2357
|
}
|
|
2352
2358
|
|
|
2359
|
+
.mint-frame {
|
|
2360
|
+
height: fit-content;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2353
2363
|
:root {
|
|
2354
2364
|
--mint-bitcoin: #FF9900;
|
|
2355
2365
|
--mint-ethereum: #3C3C3D;
|