Add fade in animation

This commit is contained in:
Beau Findlay
2024-04-26 16:09:51 +01:00
parent fcfff25ec7
commit 58baa78e7a
2 changed files with 17 additions and 2 deletions

View File

@@ -1,3 +1,18 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
.fade-in {
animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
from {
opacity: 0;
}
to {
opacity: 1;
}
}