From d9e8743e02d0125c60bb77e08e7e2d8f3c749937 Mon Sep 17 00:00:00 2001 From: Jeremy McDermott Date: Thu, 31 Oct 2024 11:49:45 -0300 Subject: [PATCH] LOYALIST-56 Remove header class property leading space --- custom/themes/the_loyalist_collection/templates/page.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom/themes/the_loyalist_collection/templates/page.html.twig b/custom/themes/the_loyalist_collection/templates/page.html.twig index fab7009..bc63fa0 100644 --- a/custom/themes/the_loyalist_collection/templates/page.html.twig +++ b/custom/themes/the_loyalist_collection/templates/page.html.twig @@ -44,7 +44,7 @@ #} {% set header_classes = - (b5_navbar_schema != 'none' ? (b5_navbar_schema == 'dark' ? ' text-light' : ' text-dark' ) : ' ') ~ + (b5_navbar_schema != 'none' ? (b5_navbar_schema == 'dark' ? 'text-light' : 'text-dark' ) : ' ') ~ (b5_navbar_bg_schema != 'none' ? " bg-#{b5_navbar_bg_schema}" : ' ') %} {%