Nutze neueste Version für Svelte5

Ignoriere die Pagination der Tabellen und das Bearbeiten der Einträge.
This commit is contained in:
2025-06-04 18:13:07 +02:00
parent 85d22d5c06
commit b89a3c744f
61 changed files with 524 additions and 501 deletions
+16
View File
@@ -0,0 +1,16 @@
.button(@color, @colorFont) {
@colorBackground: @color;
@colorBackgroundLight: lighten(@colorBackground,50%,relativ);
@colorShadow: fade(@colorBackground,50%);
height: 2.5em;
.border-radius(1.25em);
padding: 0.5em 1.25em;
.vertical-gradient(@colorBackgroundLight, @colorBackground);
.box-shadow(0.1em 0.2em 0.5em @colorShadow);
color: @colorFont;
font-weight: bold;
&:hover {
.vertical-gradient(@colorBackground, @colorBackgroundLight);
}
margin: 0.25rem;
}