diff options
author | Go Shoemake <marrus-sh@users.noreply.github.com> | 2017-06-18 19:32:23 -0700 |
---|---|---|
committer | beatrix-bitrot <beatrix.bitrot@gmail.com> | 2017-06-23 21:45:14 +0000 |
commit | 62a75891abd8044189bbb2fbdd48837e8890a8a5 (patch) | |
tree | 9a306a6aaabce81de37e1db6218b500606469717 | |
parent | b27842dc70847cb936ae2b49777095ba12c5917b (diff) |
Fixes drawer so stuff doesn't overflow
-rw-r--r-- | app/javascript/styles/custom.scss | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/javascript/styles/custom.scss b/app/javascript/styles/custom.scss index 5bfe2a412..b03231102 100644 --- a/app/javascript/styles/custom.scss +++ b/app/javascript/styles/custom.scss @@ -7,7 +7,9 @@ } .drawer { - width: 17%; + flex-grow: 1 !important; + flex-basis: 200px !important; + min-width: 268px; max-width: 400px; } } |