Anpassungen Details

This commit is contained in:
Simona Oswald 2026-04-18 00:09:58 +02:00
parent 536df27e57
commit 28e1647749
3 changed files with 12 additions and 3 deletions

View File

@ -262,6 +262,15 @@
flex-shrink: 0;
}
.button-plaetze {
border: none;
padding: var(--space-01) var(--space-4);
font-family: var(--font-main);
font-weight: 400;
font-size: 1.125rem;
color: var(--olive);
}
.event-spots {
color: var(--olive);
font-size: 18px;

View File

@ -645,7 +645,7 @@ p {
/* Footer */
.footer {
display: flex;
justify-content: space-between;
/*justify-content: space-between;*/
align-items: center;
gap: 1.5rem;
padding: var(--space-3) var(--space-7);

View File

@ -372,7 +372,7 @@
: isRegistered
? '<button class="button-primary button-primary-abmelden" type="button" data-registration-action="unregister">Abmelden</button>'
: isRegistrationClosed
? '<button class="button-primary" button-primary-abmelden" type="button" data-registration-action="closed" disabled>Anmeldung geschlossen</button>'
? '<button class="button-primary" button-plaetze" type="button" data-registration-action="closed" disabled>Anmeldung geschlossen</button>'
: isFull
? ''
: !currentUser
@ -398,7 +398,7 @@
</div>
</div>
<div class="event-side${isFull ? ' event-side-full' : ''}">
<span class="button-secondary${isFull ? ' event-spots-full' : ''}">${isFull ? 'Ausgebucht' : `${freePlaces} Plätze frei`}</span>
<span class="button-plaetze${isFull ? ' event-spots-full' : ''}">${isFull ? 'Ausgebucht' : `${freePlaces} Plätze frei`}</span>
${actionMarkup}
</div>
`;