From bfb2a85ab6dad67c70eb082b89d958a546576ab9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 7 Mar 2024 22:26:23 +0100 Subject: [PATCH] fix(ui): always display the action container MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- ui/web/src/App.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/web/src/App.vue b/ui/web/src/App.vue index f8fe8b24..7d52542f 100644 --- a/ui/web/src/App.vue +++ b/ui/web/src/App.vue @@ -27,12 +27,16 @@ import Container from '@/components/Container.vue' #action-container { min-width: max-content; + height: fit-content; display: flex; + position: sticky; + top: 0.008%; flex-direction: column; justify-content: center; align-items: center; text-align: center; - margin: 0.4%; + margin-right: 0.2%; + margin-left: 0.2%; padding: 0.4%; border: solid black; } -- 2.34.1