diff options
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | web/cobrands/sass/_layout.scss | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ec954119..452172f2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ * Unreleased - Bugfixes: - - Don't remove automated fields when editing contacts #2163 + - Don't remove automated fields when editing contacts #2163 + - Remove small border to left of Fixed banner. #2156 * v2.3.4 (7th June 2018) - Bugfixes: 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; + } } } |