diff --git a/lms/static/sass/views/_login-register.scss b/lms/static/sass/views/_login-register.scss
index 670dceebd4..24ed359852 100644
--- a/lms/static/sass/views/_login-register.scss
+++ b/lms/static/sass/views/_login-register.scss
@@ -37,14 +37,13 @@
font-size: 14px;
text-align: left;
display: inline-block;
- vertical-align: middle;
line-height: normal;
- margin-left: -30px;
+ padding: 15px 0 0 10px;
}
-@media (max-width: $bp-screen-sm) {
+@include media-breakpoint-down(md) {
.enterprise-tagline {
- width: 200px
+ display: none;
}
}
diff --git a/lms/templates/header/brand.html b/lms/templates/header/brand.html
index f6eb0ef72b..c5cd260ea8 100644
--- a/lms/templates/header/brand.html
+++ b/lms/templates/header/brand.html
@@ -19,14 +19,6 @@ from branding import api as branding_api
- % if enable_enterprise_sidebar:
-
- <% tagline = configuration_helpers.get_value('ENTERPRISE_TAGLINE', settings.ENTERPRISE_TAGLINE) %>
- % if tagline:
- ${tagline}
- % endif
-
- % endif
% if course and not disable_courseware_header:
% endif
+% if enable_enterprise_sidebar:
+
+ <% tagline = configuration_helpers.get_value('ENTERPRISE_TAGLINE', settings.ENTERPRISE_TAGLINE) %>
+ % if tagline:
+ ${tagline}
+ % endif
+
+% endif
diff --git a/lms/templates/header/navbar-logo-header.html b/lms/templates/header/navbar-logo-header.html
index c704296f8a..5929ff5dd8 100644
--- a/lms/templates/header/navbar-logo-header.html
+++ b/lms/templates/header/navbar-logo-header.html
@@ -19,14 +19,6 @@ from branding import api as branding_api
%block>
- % if enable_enterprise_sidebar:
-
- <% tagline = configuration_helpers.get_value('ENTERPRISE_TAGLINE', settings.ENTERPRISE_TAGLINE) %>
- % if tagline:
- ${tagline}
- % endif
-
- % endif
% if course:
% endif
+% if enable_enterprise_sidebar:
+
+ <% tagline = configuration_helpers.get_value('ENTERPRISE_TAGLINE', settings.ENTERPRISE_TAGLINE) %>
+ % if tagline:
+ ${tagline}
+ % endif
+
+% endif
diff --git a/lms/templates/navigation/navbar-logo-header.html b/lms/templates/navigation/navbar-logo-header.html
index 86eb72efc2..49aa321a98 100644
--- a/lms/templates/navigation/navbar-logo-header.html
+++ b/lms/templates/navigation/navbar-logo-header.html
@@ -21,14 +21,6 @@ from branding import api as branding_api
%block>
- % if enable_enterprise_sidebar:
-
- <% tagline = configuration_helpers.get_value('ENTERPRISE_TAGLINE', settings.ENTERPRISE_TAGLINE) %>
- % if tagline:
- ${tagline}
- % endif
-
- % endif
% if course:
% endif
+% if enable_enterprise_sidebar:
+
+ <% tagline = configuration_helpers.get_value('ENTERPRISE_TAGLINE', settings.ENTERPRISE_TAGLINE) %>
+ % if tagline:
+ ${tagline}
+ % endif
+
+% endif