diff --git a/files/events/assets/css/blizzard.css b/files/events/assets/css/blizzard.css index fe312f85e..c520dc3f1 100644 --- a/files/events/assets/css/blizzard.css +++ b/files/events/assets/css/blizzard.css @@ -519,7 +519,7 @@ body { /* Change mobile navbar icon colors to basketball */ #mobile-bottom-navigation-bar i { - color: #000 !important; + color: var(--gray-200)!important; } #mobile-bottom-navigation-bar { @@ -534,3 +534,9 @@ body { /* Real work, lol */ display: none; } + +@media (max-width: 767.98px) { + .candy-cane, .sign { + bottom: 3rem !important; + } +} diff --git a/files/templates/header.html b/files/templates/header.html index d4333176f..2052777ed 100644 --- a/files/templates/header.html +++ b/files/templates/header.html @@ -353,7 +353,8 @@ {% endif %}
  • {% if has_sidebar %} - {% include "sidebar_" ~ SITE_NAME ~ ".html" %} + {% set sidebar = "sidebar_" ~ SITE_NAME ~ ".html" %} + {% include sidebar if not EVENT_SIDEBAR else 'event/' ~ sidebar %} {% endif %}