@appartmint/mint 0.12.17 → 0.12.26
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 +4 -3
- 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/imports/components/header.d.ts +4 -0
- package/dist/js/imports/components/header.d.ts.map +1 -1
- package/dist/js/index.js +16 -15
- package/dist/js/index.js.map +1 -1
- package/dist/js/index.min.js +1 -1
- package/dist/js/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/scss/imports/components/_header.scss +4 -3
- package/src/scss/imports/global/_texture.scss +1 -0
package/dist/css/mint.css
CHANGED
|
@@ -560,6 +560,7 @@ app-footer::before {
|
|
|
560
560
|
bottom: -100%;
|
|
561
561
|
}
|
|
562
562
|
#mint-header.mint-bottom #mint-wrapper.mint-open {
|
|
563
|
+
top: unset;
|
|
563
564
|
bottom: 0;
|
|
564
565
|
}
|
|
565
566
|
#mint-header.mint-left #mint-wrapper {
|
|
@@ -693,12 +694,13 @@ app-footer::before {
|
|
|
693
694
|
#mint-header #mint-navbar {
|
|
694
695
|
display: flex;
|
|
695
696
|
align-items: center;
|
|
696
|
-
|
|
697
|
+
justify-content: space-between;
|
|
697
698
|
height: 100%;
|
|
698
699
|
}
|
|
699
700
|
#mint-header .mint-logo {
|
|
700
|
-
|
|
701
|
+
display: flex;
|
|
701
702
|
width: auto;
|
|
703
|
+
text-decoration: none;
|
|
702
704
|
}
|
|
703
705
|
#mint-header .mint-logo img {
|
|
704
706
|
max-width: var(--mint-header-height);
|
|
@@ -827,7 +829,6 @@ app-footer::before {
|
|
|
827
829
|
#mint-header .mint-buttons {
|
|
828
830
|
flex-wrap: nowrap;
|
|
829
831
|
justify-content: flex-end;
|
|
830
|
-
width: 100%;
|
|
831
832
|
}
|
|
832
833
|
#mint-header .mint-buttons a:not([aria-controls=mint-wrapper]),
|
|
833
834
|
#mint-header .mint-buttons button:not([aria-controls=mint-wrapper]) {
|