refactor(frontend): inline modal-card-head-padding in Card footer

The --modal-card-head-padding CSS variable is provided by Bulma's
components/modal partial. Inlining Bulma's default (20px) lets us drop that
partial without needing a local redeclaration.
This commit is contained in:
kolaente 2026-04-15 12:25:12 +02:00 committed by kolaente
parent 35f183979c
commit 0b2f625f06
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ defineEmits<{
.card-footer {
background-color: var(--grey-50);
border-block-start: 0;
padding: var(--modal-card-head-padding);
padding: 20px;
display: flex;
justify-content: flex-end;
}