Finished adding backend features to frontend

This commit is contained in:
2023-05-17 11:05:03 +02:00
parent 12f1e04487
commit 3d84e513fa
3 changed files with 13 additions and 24 deletions

View File

@@ -2,11 +2,6 @@
animation: blur 0.5s ease-in-out ;
animation-fill-mode: forwards;
}
.popup-flex:has(.hiddable-container){
animation: deblur 0.3s ease-in-out ;
animation-direction: reverse;
animation-fill-mode: forwards;
}
.popup-flex{
display: flex;
align-items: center;
@@ -66,28 +61,12 @@
0% {
backdrop-filter: blur(0px);
}
50% {
backdrop-filter: blur(5px);
}
100% {
backdrop-filter: blur(10px);
}
}
@keyframes deblur {
0%{
backdrop-filter: blur(10px);
}
50% {
backdrop-filter: blur(5px);
}
100% {
backdrop-filter: blur(0px);
display: none;
}
}