fix render bug

This commit is contained in:
Philipp Kühn 2020-10-12 17:12:44 +02:00
parent 597b2db742
commit 5d679249d5

View File

@ -215,8 +215,21 @@ $menuBreakPoint: 750px;
position: sticky;
z-index: 2;
top: 0;
background-color: rgba($colorBlack, 0.8);
backdrop-filter: blur(10px);
&::after {
content: '';
z-index: -1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: $colorBlack;
opacity: 0.8;
transform: translate3d(0,0,0);
pointer-events: none;
}
}
&__inner {