Window system

This commit is contained in:
2025-09-02 06:41:17 +07:00
parent a711d23ddc
commit 5f5a07cf41
7 changed files with 149 additions and 26 deletions

View File

@@ -13,11 +13,23 @@
animation-timing-function: linear(0.2, 0.8, 1);
}
50% {
transform: translate(0px, -280px) scale(1.18, 0.9);
transform: translate(0px, -180px) scale(1.18, 0.9);
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
}
}
@keyframes window-popup {
0% {
transform: scale(0, 0.03);
}
40% {
transform: scale(1, 0.03);
}
100% {
transform: scale(1, 1);
}
}
h2 {
@apply text-2xl font-bold
}