@appartmint/mint 0.15.8 → 0.15.11
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 +37 -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/package.json +1 -1
- package/src/scss/imports/components/_backgrounds.scss +26 -6
- package/src/scss/imports/components/_footer.scss +1 -0
- package/src/scss/imports/components/_header.scss +10 -12
- package/src/scss/imports/global/_global.scss +10 -2
- package/src/scss/imports/global/_texture.scss +3 -0
- package/src/scss/imports/util/_vars.scss +5 -1
package/dist/css/mint.css
CHANGED
|
@@ -11,6 +11,25 @@
|
|
|
11
11
|
transform: none !important;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
.mint-background {
|
|
15
|
+
position: fixed;
|
|
16
|
+
left: 0;
|
|
17
|
+
top: 0;
|
|
18
|
+
width: 100vw;
|
|
19
|
+
height: 100vh;
|
|
20
|
+
object-fit: cover;
|
|
21
|
+
background-size: cover;
|
|
22
|
+
background-position: center;
|
|
23
|
+
background-repeat: no-repeat;
|
|
24
|
+
z-index: 0;
|
|
25
|
+
filter: opacity(0) blur(10vw);
|
|
26
|
+
transition: filter 1000ms ease-out;
|
|
27
|
+
}
|
|
28
|
+
.mint-background.active {
|
|
29
|
+
opacity: 1;
|
|
30
|
+
filter: opacity(1) blur(0.15vw);
|
|
31
|
+
}
|
|
32
|
+
|
|
14
33
|
.mint-btn, .mint-select,
|
|
15
34
|
.mint-btn-group,
|
|
16
35
|
.mint-btn-icon,
|
|
@@ -592,6 +611,7 @@ app-footer::before {
|
|
|
592
611
|
overflow: hidden;
|
|
593
612
|
}
|
|
594
613
|
.mint-footer.mint-hide {
|
|
614
|
+
display: flex;
|
|
595
615
|
transform: translateY(100%);
|
|
596
616
|
}
|
|
597
617
|
.mint-footer * {
|
|
@@ -810,7 +830,10 @@ app-footer::before {
|
|
|
810
830
|
#mint-header.mint-spread #mint-wrapper [aria-controls] + ul {
|
|
811
831
|
display: flex !important;
|
|
812
832
|
height: auto !important;
|
|
813
|
-
margin-bottom:
|
|
833
|
+
margin-bottom: 3rem !important;
|
|
834
|
+
}
|
|
835
|
+
#mint-header.mint-spread #mint-wrapper [aria-controls] + ul > li:first-child {
|
|
836
|
+
font-size: 1.5em;
|
|
814
837
|
}
|
|
815
838
|
}
|
|
816
839
|
#mint-header.mint-spread:not(.mint-expand) #mint-wrapper [aria-controls] {
|
|
@@ -819,7 +842,10 @@ app-footer::before {
|
|
|
819
842
|
#mint-header.mint-spread:not(.mint-expand) #mint-wrapper [aria-controls] + ul {
|
|
820
843
|
display: flex !important;
|
|
821
844
|
height: auto !important;
|
|
822
|
-
margin-bottom:
|
|
845
|
+
margin-bottom: 3rem;
|
|
846
|
+
}
|
|
847
|
+
#mint-header.mint-spread:not(.mint-expand) #mint-wrapper [aria-controls] + ul > li:first-child {
|
|
848
|
+
font-size: 1.5em;
|
|
823
849
|
}
|
|
824
850
|
#mint-header.mint-tray #mint-wrapper {
|
|
825
851
|
gap: 1.5rem;
|
|
@@ -843,12 +869,6 @@ app-footer::before {
|
|
|
843
869
|
#mint-header.mint-tray #mint-wrapper nav li {
|
|
844
870
|
width: 100%;
|
|
845
871
|
}
|
|
846
|
-
#mint-header.mint-tray #mint-wrapper nav [aria-controls] + ul {
|
|
847
|
-
margin-bottom: 3rem !important;
|
|
848
|
-
}
|
|
849
|
-
#mint-header.mint-tray #mint-wrapper nav [aria-controls] + ul > li:first-child {
|
|
850
|
-
font-size: 1.5em;
|
|
851
|
-
}
|
|
852
872
|
#mint-header:not(.mint-border)::before {
|
|
853
873
|
content: "";
|
|
854
874
|
position: absolute;
|
|
@@ -1278,8 +1298,16 @@ main > router-outlet {
|
|
|
1278
1298
|
flex-grow: 0;
|
|
1279
1299
|
}
|
|
1280
1300
|
main > router-outlet + * {
|
|
1281
|
-
|
|
1301
|
+
display: flex;
|
|
1302
|
+
flex-direction: column;
|
|
1303
|
+
align-items: center;
|
|
1304
|
+
justify-content: center;
|
|
1282
1305
|
flex-grow: 1;
|
|
1306
|
+
width: 100%;
|
|
1307
|
+
}
|
|
1308
|
+
main > router-outlet + * + :not(mint-footer) {
|
|
1309
|
+
height: 0;
|
|
1310
|
+
overflow: hidden;
|
|
1283
1311
|
}
|
|
1284
1312
|
|
|
1285
1313
|
nav a {
|