Small UI improvements

This commit is contained in:
Daniel
2022-06-02 01:48:21 +04:30
parent 2e2135976f
commit 28f9d1dcfd
9 changed files with 51 additions and 35 deletions
+15 -8
View File
@@ -1,4 +1,16 @@
.filter-overlay {
animation: fadein 0.2s;
background-color: black;
opacity: 10%;
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 100vw;
}
.filter {
animation: fadein 0.3s;
border: solid;
border-width: 1px;
font-weight: 300;
@@ -25,12 +37,7 @@
margin: 5px;
}
.filter-overlay {
background-color: black;
opacity: 10%;
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 100vw;
@keyframes fadein {
from { opacity: 0%; }
to { }
}