From 51660f76779e189bca2a24f1e4fca34b8a1a2898 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Wed, 3 Jul 2024 09:47:39 +0200 Subject: [PATCH] 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 --- frontend/src/components/home/ContentAuth.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/home/ContentAuth.vue b/frontend/src/components/home/ContentAuth.vue index 99ad88d2c..d5fd8499e 100644 --- a/frontend/src/components/home/ContentAuth.vue +++ b/frontend/src/components/home/ContentAuth.vue @@ -160,6 +160,7 @@ projectStore.loadAllProjects() } .app-content { + display: flow-root; z-index: 10; position: relative; padding: 1.5rem 0.5rem 0;