From 029602fc738085d1772607e702f06abd3b21c69a Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Fri, 27 Jan 2017 16:04:24 +0000 Subject: [PATCH] Fix the width of input fields within login/reg box This is so they do not expand outside of the login area. (280px = 300px - 2px - 18px, 2px for borders, 18px for padding) --- .../vector/css/matrix-react-sdk/structures/login/_Login.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss index 30231b43da5..888f979d6d5 100644 --- a/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss +++ b/src/skins/vector/css/matrix-react-sdk/structures/login/_Login.scss @@ -45,7 +45,7 @@ limitations under the License. } .mx_Login_field { - width: 100%; + width: 280px; border-radius: 3px; border: 1px solid $strong-input-border-color; font-weight: 300;