references and spinner fixes

This commit is contained in:
Michael Freno
2025-12-22 01:18:49 -05:00
parent 12b36815df
commit 281654081d
9 changed files with 484 additions and 89 deletions

View File

@@ -348,26 +348,6 @@ label.underlinedInputLabel {
color: var(--color-surface1);
}
.logoSpinner:hover {
animation: spinner 1.5s ease;
}
@keyframes spinner {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}
@keyframes spinReverse {
to {
transform: rotate(-360deg);
}
}
.animate-spin-reverse {
animation: spinReverse 1s linear infinite;
}
.vertical-rule-around {
display: flex;
flex-direction: column;
@@ -1221,3 +1201,6 @@ svg.mermaid text {
display: block;
margin-right: auto;
}
.reference-item > span.ml-2 {
font-style: italic;
}