improved ux + coloring fix + improved dashboard ui

This commit is contained in:
Daniel
2023-08-28 14:03:06 -04:00
parent e47aef8123
commit 5015f79b81
7 changed files with 84 additions and 186 deletions
+15
View File
@@ -47,6 +47,21 @@
animation: slide-up-animation 70ms;
}
.slide-down {
animation: slide-down-animation 70ms;
}
@keyframes slide-down-animation {
0% {
transform: translateY(-15%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes slide-up-animation {
0% {
transform: translateY(15%);