From 62a75891abd8044189bbb2fbdd48837e8890a8a5 Mon Sep 17 00:00:00 2001 From: Go Shoemake Date: Sun, 18 Jun 2017 19:32:23 -0700 Subject: [PATCH] Fixes drawer so stuff doesn't overflow --- app/javascript/styles/custom.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } }