From 00fe2b9370ae63f818fca8116f0c2a0504ecf75e Mon Sep 17 00:00:00 2001 From: Chris Pymm Date: Wed, 13 Nov 2024 12:03:47 +0000 Subject: [PATCH] fix(action bar): adjust alignment of filter toggle button when next to menu button (#921) 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; + } +} + +