From 6225648e3a0cd571c9b416235eb7c5cf1de76b08 Mon Sep 17 00:00:00 2001 From: Julian Pollinger Date: Thu, 7 Jan 2021 21:50:26 +0100 Subject: [PATCH] Minor formatting --- cookbook/templatetags/theming_tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/templatetags/theming_tags.py b/cookbook/templatetags/theming_tags.py index 957ab72cb..9172c9b67 100644 --- a/cookbook/templatetags/theming_tags.py +++ b/cookbook/templatetags/theming_tags.py @@ -34,7 +34,7 @@ def nav_color(request): def sticky_nav(request): if (not request.user.is_authenticated and STICKY_NAV_PREF_DEFAULT) or \ (request.user.is_authenticated and request.user.userpreference.sticky_navbar): - return 'position: sticky; top: 0; left: 0; z-index:1000' + return 'position: sticky; top: 0; left: 0; z-index: 1000;' else: return ''