We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7786acd commit fc70db8Copy full SHA for fc70db8
assets/scss/components/_main-menu-mobile.scss
@@ -1,6 +1,5 @@
1
.main-menu-mobile {
2
position: fixed;
3
- background: $primary;
4
top: 0;
5
left: 0;
6
width: 100%;
@@ -14,10 +13,12 @@
14
13
align-items: center;
15
flex-direction: column;
16
&.open {
17
- opacity: 0.9;
+ opacity: 1;
18
visibility: visible;
19
height: 100%;
20
z-index: 20;
+ background: rgba($body-bg, 0.7);
21
+ backdrop-filter: blur(10px);
22
li {
23
animation: fadeInRight 0.5s ease forwards;
24
animation-delay: 0.35s;
@@ -37,6 +38,9 @@
37
38
animation-delay: 0.6s;
39
}
40
41
+ @include media-breakpoint-up(md) {
42
+ display: none;
43
+ }
44
45
ul {
46
font-size: 30px;
@@ -74,3 +78,6 @@
74
78
75
79
76
80
81
+.lock-scroll {
82
+ overflow: hidden;
83
+}
0 commit comments