From ed318caa43f56dc9053bf6a59461f6ed02f52116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Belin?= Date: Tue, 29 Oct 2024 00:35:28 +0100 Subject: [PATCH] Fix the action bar padding --- src/mc2it/theme/ui/components/_action_bar.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mc2it/theme/ui/components/_action_bar.scss b/src/mc2it/theme/ui/components/_action_bar.scss index 7dacdaa..0614e02 100644 --- a/src/mc2it/theme/ui/components/_action_bar.scss +++ b/src/mc2it/theme/ui/components/_action_bar.scss @@ -7,8 +7,8 @@ action-bar, .action-bar { box-shadow: var(--box-shadow-sm); display: block; inset: var(--navbar-height) 0 auto 0; - padding-bottom: map.get($spacers, 2) 0; - padding-top: map.get($spacers, 2) 0; + padding-bottom: map.get($spacers, 2); + padding-top: map.get($spacers, 2); position: fixed; user-select: none; z-index: $zindex-fixed - 1;