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:
parent
35f183979c
commit
0b2f625f06
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue