From 129bdadcef7507994285609608f319be04998ca0 Mon Sep 17 00:00:00 2001 From: Dana Cotoran Date: Mon, 8 Feb 2021 12:22:41 +0000 Subject: [PATCH] Add layout header component styles for /transition We have made some adjustments to use the layout header component in static where the account navigation should be present. This would be on the transition page as well as Brexit checker pages. This is fine, however some of the layout styles are overriding the layout header component styles in static, resulting in extra padding around the layout header content. Importing these styles into collections seems to fix this issue. --- app/assets/stylesheets/application.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 6c1788f54..b99631900 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -26,6 +26,7 @@ $covid-yellow: #fff500; @import 'govuk_publishing_components/components/inset-text'; @import 'govuk_publishing_components/components/inverse-header'; @import 'govuk_publishing_components/components/label'; +@import 'govuk_publishing_components/components/layout-header'; @import 'govuk_publishing_components/components/lead-paragraph'; @import 'govuk_publishing_components/components/metadata'; @import 'govuk_publishing_components/components/notice';