blur content when the menu is open

This commit is contained in:
Daniel Schön
2020-05-22 13:28:30 +02:00
parent 5547352ff2
commit 7ed89b8b4f
6 changed files with 36 additions and 8 deletions

View File

@@ -5,7 +5,18 @@
}
100% {
opacity: 0.99;
opacity: 0.8;
}
}
// Animation blur
@keyframes blur {
0% {
filter: blur(0px);
}
100% {
filter: blur(4px);
}
}