diff options
author | Ondřej Hruška <ondra@ondrovo.com> | 2017-07-05 11:56:46 +0200 |
---|---|---|
committer | beatrix <beatrix.bitrot@gmail.com> | 2017-07-05 07:21:36 -0400 |
commit | 4cbbea58817c28a7cb9ee3d6acb2ff5c75484455 (patch) | |
tree | 119b1cb16a704a948bc003c6e9684b1dcc232932 /app | |
parent | 167c392efd8bd0639068940660fa0c0d48f3bdb6 (diff) |
Improved CSS for drawer to restore original looks (full height)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/styles/components.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index a954d243a..7ec712723 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -1499,7 +1499,7 @@ .drawer__pager { box-sizing: border-box; padding: 0; - flex: 0 0 auto; + flex: 1 1 auto; position: relative; } @@ -1507,7 +1507,8 @@ background: lighten($ui-base-color, 13%); box-sizing: border-box; padding: 0; - overflow-y: visible; + position: absolute; + height: 100%; width: 100%; &.darker { |