Commit 3be1da94 by Matt Tuchfarber

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.
parent 9c7043c2
...@@ -81,7 +81,8 @@ ...@@ -81,7 +81,8 @@
padding-left: ($baseline/2); padding-left: ($baseline/2);
padding-right: ($baseline/2); padding-right: ($baseline/2);
$third-party-button-height: ($baseline*1.75); $third-party-button-height: ($baseline*1.75);
display: inline-block; display: block;
margin:auto;
max-width: 500px; max-width: 500px;
.instructions { .instructions {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment