This commit is contained in:
2026-03-29 20:42:44 +02:00
parent 9f97dd9721
commit 615b3f3dbb
+7 -4
View File
@@ -184,18 +184,21 @@
} }
.footer { .footer {
position: sticky; /* sticks at bottom of parent */ position: sticky;
bottom: 0; bottom: 0;
width: 100%; width: fit-content;
align-self: flex-end;
padding: 0.5rem 1rem; padding: 0.5rem 1rem;
background: var(--card-bg, #1e1e1e); background: var(--card-bg, #1e1e1e);
color: var(--text-h, #f0f0f0); color: var(--text-h, #f0f0f0);
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
border-top-left-radius: 8px; gap: 1rem;
border-top-right-radius: 8px; border-radius: 8px 0 0 0;
border: 1px solid var(--border, #333); border: 1px solid var(--border, #333);
border-right: none;
border-bottom: none;
z-index: 10; z-index: 10;
} }