From 31b50af5d1aeae347b2729e2e2a8be2550519624 Mon Sep 17 00:00:00 2001 From: Chris Pymm Date: Mon, 11 Nov 2024 21:52:10 +0000 Subject: [PATCH] fix(action bar): adjust alignment of filter toggle button when next to menu button the updates to the button menu caused the alignment of the buttons in the action bar component for filterring to be misaligned. This is a simple fix to ensure the buttons are aligned. --- src/moj/components/action-bar/_action-bar.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/moj/components/action-bar/_action-bar.scss b/src/moj/components/action-bar/_action-bar.scss index 70c2442ab..27b51c062 100644 --- a/src/moj/components/action-bar/_action-bar.scss +++ b/src/moj/components/action-bar/_action-bar.scss @@ -25,4 +25,9 @@ } } -} \ No newline at end of file + > .govuk-button { + vertical-align: baseline; + } +} + +