Add a fade in on the homepage

pull/614/head
Wilfred Hughes 2023-12-27 23:39:05 +07:00
parent 2bf0fb4949
commit a463edc869
1 changed files with 12 additions and 0 deletions

@ -1,3 +1,15 @@
body {
animation: 2s ease-out 0s 1 FadeIn;
}
@keyframes FadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
body {
--bs-body-font-size: 18px;
--bs-border-radius: 0.5rem;