Fehlende Felder für Bestellformular Zusatzmodule Organisationen hinzugefügt

This commit is contained in:
Andreas Hnida 2024-02-23 13:28:42 +00:00
commit 06a1898711
2 changed files with 36 additions and 9 deletions

View file

@ -275,6 +275,23 @@ table .far {
#verify_email, #age, #hobbies {
display:none;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spinner {
border: 2px solid transparent; /* Make spinner background transparent */
border-top-color: currentColor; /* Use current text color for spinner */
border-right-color: currentColor; /* Use current text color for spinner */
border-radius: 99999px; /* Fully rounded edges */
width: 1em; /* Relative to font size */
height: 1em; /* Relative to font size */
animation: spin 1s linear infinite; /* Apply the spin animation */
}
/**************** Component Styles ******************/