Merge branch 'chore/tailwind-conversion' of ssh://git.luke-else.co.uk:222/luke-else/luke-else.co.uk into chore/tailwind-conversion

This commit is contained in:
2025-05-24 22:34:10 +01:00
2 changed files with 52 additions and 33 deletions

View File

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