@appartmint/mint 0.13.0 → 0.13.2
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 +9 -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/package.json +1 -1
- package/src/scss/imports/components/_backgrounds.scss +1 -0
- package/src/scss/imports/components/_header.scss +5 -1
- package/src/scss/imports/global/_texture.scss +2 -1
package/dist/css/mint.css
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
height: 0;
|
|
9
9
|
width: 0;
|
|
10
10
|
z-index: -1;
|
|
11
|
+
transform: none !important;
|
|
11
12
|
}
|
|
12
13
|
|
|
13
14
|
.mint-btn,
|
|
@@ -784,7 +785,6 @@ app-footer::before {
|
|
|
784
785
|
#mint-header #mint-wrapper nav {
|
|
785
786
|
height: calc(100vh - var(--mint-header-height));
|
|
786
787
|
height: calc(100dvh - var(--mint-header-height));
|
|
787
|
-
background: var(--mint-back);
|
|
788
788
|
overflow: auto;
|
|
789
789
|
background-repeat: repeat;
|
|
790
790
|
}
|
|
@@ -795,6 +795,9 @@ app-footer::before {
|
|
|
795
795
|
justify-content: center;
|
|
796
796
|
}
|
|
797
797
|
}
|
|
798
|
+
#mint-header #mint-wrapper nav:not(.mint-border) {
|
|
799
|
+
background: var(--mint-back);
|
|
800
|
+
}
|
|
798
801
|
#mint-header #mint-wrapper nav > :last-child {
|
|
799
802
|
margin-bottom: 0;
|
|
800
803
|
}
|
|
@@ -822,6 +825,7 @@ app-footer::before {
|
|
|
822
825
|
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;
|
|
823
826
|
font-size: 3em;
|
|
824
827
|
padding: 0.5rem;
|
|
828
|
+
margin: 0.5rem 0;
|
|
825
829
|
text-align: center;
|
|
826
830
|
border-radius: 1rem;
|
|
827
831
|
}
|
|
@@ -2353,6 +2357,10 @@ p, .mint-p {
|
|
|
2353
2357
|
font-size: 0.875rem;
|
|
2354
2358
|
}
|
|
2355
2359
|
|
|
2360
|
+
.mint-frame {
|
|
2361
|
+
height: fit-content;
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2356
2364
|
:root {
|
|
2357
2365
|
--mint-bitcoin: #FF9900;
|
|
2358
2366
|
--mint-ethereum: #3C3C3D;
|