diff --git a/app/assets/stylesheets/spotlight/_header.scss b/app/assets/stylesheets/spotlight/_header.scss
index 1d3b2c4e3..e40085f0e 100644
--- a/app/assets/stylesheets/spotlight/_header.scss
+++ b/app/assets/stylesheets/spotlight/_header.scss
@@ -18,7 +18,6 @@
padding: 0;
position: relative;
-
.site-title {
margin-bottom: 0;
}
@@ -30,14 +29,6 @@
white-space: nowrap;
}
- small {
- @extend .d-none;
- @extend .d-md-block;
- @extend .py-2;
-
- font-size: $h4-font-size;
- }
-
.navbar {
&:last-child {
margin-bottom: 0;
@@ -128,12 +119,11 @@
// especially on light background images.
.background-container-gradient {
@include masthead-background-containers();
- background:
- linear-gradient(
- rgba(0, 0, 0, 0.0),
- rgba(0, 0, 0, 0.4),
- rgba(0, 0, 0, 0.5)
- );
+ background: linear-gradient(
+ rgba(0, 0, 0, 0),
+ rgba(0, 0, 0, 0.4),
+ rgba(0, 0, 0, 0.5)
+ );
height: 100%;
}
diff --git a/app/views/shared/_masthead.html.erb b/app/views/shared/_masthead.html.erb
index 3c3032161..35df0ba63 100644
--- a/app/views/shared/_masthead.html.erb
+++ b/app/views/shared/_masthead.html.erb
@@ -33,7 +33,7 @@
<%= masthead_heading_content %>
<% if masthead_subheading_content %>
- <%= masthead_subheading_content %>
+ <%= masthead_subheading_content %>
<% end %>
<% end %>