From 0b2f625f06f9da310b76bc5be42f537c7973af04 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 15 Apr 2026 12:25:12 +0200 Subject: [PATCH] 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. --- frontend/src/components/misc/Card.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/misc/Card.vue b/frontend/src/components/misc/Card.vue index ccd19faa1..9d7cf7694 100644 --- a/frontend/src/components/misc/Card.vue +++ b/frontend/src/components/misc/Card.vue @@ -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; }