FIX: Input on modal was overflowing.

This commit is contained in:
Guo Xiang Tan 2015-09-15 16:39:52 +08:00
parent 46c93a2687
commit 9977599ca9

View file

@ -88,7 +88,8 @@
form { form {
margin-top: 20px; margin-top: 20px;
input[type=text] { input[type=text] {
width: 500px; box-sizing: border-box;
width: 100%;
} }
} }
} }