Unverified Commit 80cf046d by Uman Shahzad Committed by GitHub

Merge pull request #16492 from edx/uman/responsive-registration-page-issues

[ENT-749] Fix logistration page issues in Enterprise context (plus a color fix to validation)
parents e30de61e c849e162
...@@ -10,16 +10,18 @@ ...@@ -10,16 +10,18 @@
height: 100%; height: 100%;
padding-left: $baseline; padding-left: $baseline;
padding-right: $baseline; padding-right: $baseline;
margin-left: auto;
} }
.login-register.border-left { .login-register.border-left {
border-left: 1px solid #d9d9d9; border-left: 1px solid #d9d9d9;
padding-left: ($baseline*1.5); padding-left: ($baseline*1.5);
padding-right: $baseline; padding-right: $baseline;
margin-left: 0;
} }
} }
@media (max-width: 767px) { @include media-breakpoint-down(md) {
.enterprise-content { .enterprise-content {
margin: auto auto; margin: auto auto;
display: block; display: block;
...@@ -397,7 +399,7 @@ ...@@ -397,7 +399,7 @@
} }
&.success { &.success {
border-color: $success-color-hover; border-color: theme-color("success");
} }
} }
...@@ -408,7 +410,7 @@ ...@@ -408,7 +410,7 @@
} }
&.success { &.success {
outline-color: $success-color-hover; outline-color: theme-color("success");
} }
} }
...@@ -436,7 +438,7 @@ ...@@ -436,7 +438,7 @@
} }
&.success { &.success {
color: $success-color-hover; color: theme-color("success");
} }
} }
......
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