From 28b7ae30ee29b6c665beb7086d50d48ddd1d804c Mon Sep 17 00:00:00 2001 From: Saurabh Kumar <theskumar@users.noreply.github.com> Date: Sun, 30 Apr 2023 13:07:27 +0530 Subject: [PATCH] fix extra margin on the admin bar sub title (#3385) Regression bug: --- hypha/core/templates/components/admin_bar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypha/core/templates/components/admin_bar.html b/hypha/core/templates/components/admin_bar.html index ab2b1910a..dc8fbc523 100644 --- a/hypha/core/templates/components/admin_bar.html +++ b/hypha/core/templates/components/admin_bar.html @@ -4,7 +4,7 @@ <div class="admin-bar__inner items-center md:flex md:justify-between"> <div> <h1 class="text-2xl mb-0 font-bold md:text-3xl md:m-0">{% render_slot slots.header %}</h1> - {% if slots.sub_heading %}<p class="text-sm hidden md:block">{% render_slot slots.sub_heading %}</p>{% endif %} + {% if slots.sub_heading %}<p class="text-sm hidden md:block m-0">{% render_slot slots.sub_heading %}</p>{% endif %} </div> {% render_slot slots.inner_block %} -- GitLab