diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-06-25 18:05:28 -0700 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-06-25 18:05:28 -0700 |
commit | 96e1f756790db735edd52d17fabb68a00ec89309 (patch) | |
tree | 95b2d3234012c376df1e05314181602a4bbe14c2 /app/javascript | |
parent | 3a99552f0cbfd21964cef1c7962379c19f1f98de (diff) |
Fixes to overflows wrt drawer/column
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/styles/components.scss | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index bc21a807e..2a9236d5f 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -1377,6 +1377,7 @@ box-sizing: border-box; display: flex; flex-direction: column; + overflow: hidden; > .scrollable { background: $ui-base-color; @@ -1397,7 +1398,7 @@ box-sizing: border-box; display: flex; flex-direction: column; - overflow-y: hidden; + overflow-y: auto; } .drawer__tab { @@ -1415,7 +1416,6 @@ .column, .drawer { flex: 1 1 100%; - overflow: hidden; @supports(display: grid) { // hack to fix Chrome <57 contain: strict; } @@ -1483,7 +1483,6 @@ padding: 0; flex: 0 0 auto; position: relative; - overflow: hidden; } .drawer__inner { |