From 9977599ca9bc48295b5ecffb67ae0eae3fe5c6cf Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Tue, 15 Sep 2015 16:39:52 +0800 Subject: [PATCH] FIX: Input on modal was overflowing. --- app/assets/stylesheets/mobile/modal.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/mobile/modal.scss b/app/assets/stylesheets/mobile/modal.scss index 3111b601323..9715a193161 100644 --- a/app/assets/stylesheets/mobile/modal.scss +++ b/app/assets/stylesheets/mobile/modal.scss @@ -88,7 +88,8 @@ form { margin-top: 20px; input[type=text] { - width: 500px; + box-sizing: border-box; + width: 100%; } } }