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 {
position: sticky; /* sticks at bottom of parent */
position: sticky;
bottom: 0;
width: 100%;
width: fit-content;
align-self: flex-end;
padding: 0.5rem 1rem;
background: var(--card-bg, #1e1e1e);
color: var(--text-h, #f0f0f0);
display: flex;
justify-content: space-between;
align-items: center;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
gap: 1rem;
border-radius: 8px 0 0 0;
border: 1px solid var(--border, #333);
border-right: none;
border-bottom: none;
z-index: 10;
}