1
0

fix: app bottom padding

display: flow-root creates a new block-formatting context and thus prevents overflowing margin issues created by a last child element that has a margin bottom
This commit is contained in:
Dominik Pschenitschni 2024-07-03 09:47:39 +02:00 committed by konrad
parent f08039b23c
commit 51660f7677

View File

@ -160,6 +160,7 @@ projectStore.loadAllProjects()
} }
.app-content { .app-content {
display: flow-root;
z-index: 10; z-index: 10;
position: relative; position: relative;
padding: 1.5rem 0.5rem 0; padding: 1.5rem 0.5rem 0;