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.
This commit is contained in:
Matt Tuchfarber
2017-06-30 05:36:35 +00:00
parent 9c7043c226
commit 3be1da942d

View File

@@ -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 {