From 9cbebf239b4eec4bbd805e9b69f3b77c9e4fafb6 Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Wed, 1 Mar 2023 08:57:15 -0600 Subject: [PATCH] Fix #1930 (#2060) --- theme/partials/header.html | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/theme/partials/header.html b/theme/partials/header.html index 2382c3a2..24075c2f 100644 --- a/theme/partials/header.html +++ b/theme/partials/header.html @@ -1,9 +1,11 @@ {% set class = "md-header" %} {% if "navigation.tabs.sticky" in features %} - {% set class = class ~ " md-header--lifted" %} + {% set class = class ~ " md-header--shadow md-header--lifted" %} +{% elif "navigation.tabs" not in features %} + {% set class = class ~ " md-header--shadow" %} {% endif %}
-