Added cursor to buttons

This commit is contained in:
Alexis
2023-05-09 23:19:27 +02:00
parent 17a41714c7
commit f33c7d898d
6 changed files with 152 additions and 88 deletions

View File

@@ -11,3 +11,22 @@ body {
body::before {
@apply absolute content-[''] h-full w-full bg-[url('/tile-bg.svg')] bg-[length:4px_4px] z-50 opacity-5 pointer-events-none select-none
}
.fade-enter-from {
opacity: 0;
}
.fade-enter-to {
opacity: 1;
}
.fade-enter-active {
transition: all 0.2s ease;
}
.fade-leave-from {
opacity: 1;
}
.fade-leave-to {
opacity: 0;
}
.fade-leave-active {
transition: all 0.2s ease;
}