diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | web/cobrands/sass/_layout.scss | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b0b7a1dd2..a9bc195ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * Unreleased - Bugfixes: - Don't remove automated fields when editing contacts #2163 + - Remove small border to left of Fixed banner. #2156 - Fix issue displaying admin timeline. #2159 * v2.3.4 (7th June 2018) diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 8fbfb34ef..28a96c73d 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -761,6 +761,10 @@ body.authpage { #{$left}: -0.75em; border-#{$left}: 0.75em solid transparent; border-bottom: 0.75em solid #888; + @media (min-width: 48em) { + border: 0; + #{$left}: 0; + } } } |