Compendium Browser per type

This commit is contained in:
Dapoolp 2025-08-27 00:49:58 +02:00
parent aaf6c689fc
commit 0fff4b8f79
9 changed files with 282 additions and 85 deletions

View file

@ -23,4 +23,27 @@
color: var(--color-form-hint-hover);
}
}
.loader {
div {
opacity: .5;
// transition: opacity .3s ease-in-out;
}
&:before {
font-family: "Font Awesome 6 Pro";
content: '\f110';
position: absolute;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
animation: spinner 1.5s linear infinite;
}
}
@keyframes spinner {
to { transform: rotate(360deg); }
}
}