diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | web/cobrands/sass/_layout.scss | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b54031a4..4813d7597 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ - Make OpenGraph description translatable. - Stop double-escaping title in alert-update email. - Use inspection states in response template admin. + - Fixed CSS padding/overflow bug during sidebar "drawer" animations. #2132 - Admin improvements: - Inspectors can set non_public status of reports. #1992 - Default start date is shown on the dashboard. diff --git a/web/cobrands/sass/_layout.scss b/web/cobrands/sass/_layout.scss index 13c2dff72..b374d8d3e 100644 --- a/web/cobrands/sass/_layout.scss +++ b/web/cobrands/sass/_layout.scss @@ -699,6 +699,7 @@ body.authpage { &.static { padding: 0 0 1em; + margin: 0 -1em; // overlap parent side padding position: static; width: auto; // avoid horizontal scrollbar as drawer opens (on devices with permanent scroll bars) } |