From 3be1da942d7aa0a52b2682bf8ecd758440c76e40 Mon Sep 17 00:00:00 2001 From: Matt Tuchfarber Date: Fri, 30 Jun 2017 05:36:35 +0000 Subject: [PATCH] Center password reset page The screen the set a new password after a reset is currently misaligned on prod. It's pushed to the left side due to an inline-block display property. Changed to block and fixed margins. --- lms/static/sass/views/_login-register.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lms/static/sass/views/_login-register.scss b/lms/static/sass/views/_login-register.scss index b9f1adcfd7..27596b99e9 100644 --- a/lms/static/sass/views/_login-register.scss +++ b/lms/static/sass/views/_login-register.scss @@ -81,7 +81,8 @@ padding-left: ($baseline/2); padding-right: ($baseline/2); $third-party-button-height: ($baseline*1.75); - display: inline-block; + display: block; + margin:auto; max-width: 500px; .instructions {