sticky save/cancel buttons at top-right of admin edit page

This commit is contained in:
Pontoporeia
2026-05-05 11:09:29 +02:00
parent 95066de7b4
commit b58445f71c
5 changed files with 25 additions and 4 deletions

View File

@@ -78,6 +78,17 @@
padding-top: var(--space-m);
}
/* Sticky variant — pinned below admin header, top-right */
.admin-form-footer--sticky {
position: sticky;
top: 0;
z-index: 10;
margin: 0 0 var(--space-m);
display: flex;
justify-content: flex-end;
gap: var(--space-s);
}
.admin-btn {
padding: var(--space-2xs) var(--space-l);
background: var(--accent-primary);