From f53127c54f50e57eb96f195e33d5ab337133dd5a Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 23 Feb 2017 10:39:26 +0000 Subject: [PATCH] Fix spacing with heading/banner combination MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our CSS adjusts the spacing for the first `.heading-large` on the page so that it aligns with the navigation. This doesn’t work when something else comes first on the page, like a notification banner. But since we only ever user `.heading-large` for the `

`, and there should only be one `

` on the page we can just change the spacing for _all_ `

`s. --- app/assets/stylesheets/app.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/app.scss b/app/assets/stylesheets/app.scss index 2d45890f4..4372c5b5f 100644 --- a/app/assets/stylesheets/app.scss +++ b/app/assets/stylesheets/app.scss @@ -80,7 +80,7 @@ a { .column-main { - > .heading-large, + .heading-large, > .heading-medium { margin: 10px 0 15px 0; }