From cbe6a5eac6a54c24fbde68d85aea042b7e8cfab6 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 26 Apr 2018 01:20:49 -0400 Subject: [PATCH] Don't allow file upload text to overflow outside the container --- resources/assets/sass/dashboard.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/assets/sass/dashboard.scss b/resources/assets/sass/dashboard.scss index c596e2f..c401b70 100644 --- a/resources/assets/sass/dashboard.scss +++ b/resources/assets/sass/dashboard.scss @@ -752,6 +752,8 @@ form { } &[type="file"] { + overflow: hidden; + max-width: 100%; height: $label-height; font-size: 14px; }