From 439004cc2a2c4795746d54f9cf58fcb18a84e656 Mon Sep 17 00:00:00 2001 From: Jeff Horton <87995501+jeff-horton-ho-sas@users.noreply.github.com> Date: Thu, 27 Feb 2025 09:36:09 +0000 Subject: [PATCH] [ASL-4703] Fix squashed status-bar (#358) `@include govuk-grid-column(one-third);` uses % based width in newer govuk design system, so needs to be at the top level of the header, not nested in a content div --- package-lock.json | 4 ++-- package.json | 2 +- src/status-bar/index.scss | 3 ++- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index ac480281..9aaffa61 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ukhomeoffice/asl-components", - "version": "13.9.0", + "version": "13.9.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ukhomeoffice/asl-components", - "version": "13.9.0", + "version": "13.9.1", "license": "MIT", "dependencies": { "@ukhomeoffice/asl-constants": "^2.2.0", diff --git a/package.json b/package.json index f2ebbd92..ae7693cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ukhomeoffice/asl-components", - "version": "13.9.0", + "version": "13.9.1", "description": "React components for ASL layouts and elements", "main": "src/index.jsx", "styles": "styles/index.scss", diff --git a/src/status-bar/index.scss b/src/status-bar/index.scss index 2bc75197..0055e81d 100644 --- a/src/status-bar/index.scss +++ b/src/status-bar/index.scss @@ -1,4 +1,4 @@ -.wrapper-header .content { +.wrapper-header { @include govuk-grid-row; > nav { @@ -27,3 +27,4 @@ } } } +