From b55a2592184e0c0b8a3c937664e4dd729cb00166 Mon Sep 17 00:00:00 2001 From: Pierre GIRAUD Date: Sun, 28 Jul 2024 11:49:52 +0200 Subject: [PATCH] Fix wrong positioning of snackbars Before this change, there's a lot space between snackbars. This change is made to counterbalance a change in the teleport positioning computation (ie. with the use of --v-layout-[bottom|top] for the padding computation). We actually don't want Vuetify to computed the positioning since we're using flex display on the parents to stack the snackbars. --- powa/static/styles/main.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/powa/static/styles/main.scss b/powa/static/styles/main.scss index 5a256ab8..3e8c910f 100644 --- a/powa/static/styles/main.scss +++ b/powa/static/styles/main.scss @@ -98,6 +98,8 @@ td { left: initial; bottom: 0; right: 0; + padding-bottom: 0; + padding-top: 0; position: relative; .v-overlay__content {