#23 Updated the colour of the rotating loading button
All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 1m4s

This commit is contained in:
Luke Else 2025-03-07 22:18:07 +00:00
parent 5f1a1d4959
commit e1160b3462

View File

@ -21,21 +21,21 @@
left: 0%;
top: 0%;
animation: rotate-one 1s linear infinite;
border-bottom: 3px solid #efeffa;
border-bottom: 3px solid var(--fg);
}
.inner.two {
right: 0%;
top: 0%;
animation: rotate-two 1s linear infinite;
border-right: 3px solid #efeffa;
border-right: 3px solid var(--fg);
}
.inner.three {
right: 0%;
bottom: 0%;
animation: rotate-three 1s linear infinite;
border-top: 3px solid #efeffa;
border-top: 3px solid var(--fg);
}
@keyframes rotate-one {