some updates

This commit is contained in:
MoonDev
2025-05-22 21:57:13 +03:00
parent 5d47f71e0a
commit a775fe1c80
15 changed files with 425 additions and 110 deletions

View File

@@ -1,4 +1,23 @@
@import "tailwindcss";
#root{
html,body,#root{
width:100%;
height: 100%;
background-color: #101828;
}
@keyframes anim-pop {
0% {
opacity: 0;
transform: scale(.95);
transform: scale(var(--btn-focus-scale, .98));
}
100% {
opacity: 1;
transform: scale(1);
}
}
.anim-pop {
opacity: 0; /* Element starts hidden */
animation: anim-pop .3s ease-in forwards;
animation-delay: 0.2s;
}