From: Adam Dullage Date: Wed, 1 May 2024 20:19:42 +0000 (+0100) Subject: Implement responsive logo and adjust navbar bottom margin X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5a78f9005bccd551fe1483d24e970b84a75327dc;p=flatnotes.git Implement responsive logo and adjust navbar bottom margin --- diff --git a/client/components/Logo.vue b/client/components/Logo.vue index e5facaa..7f56a7a 100644 --- a/client/components/Logo.vue +++ b/client/components/Logo.vue @@ -20,8 +20,9 @@ viewBox="0 0 149 29" fill="none" xmlns="http://www.w3.org/2000/svg" - class="text-theme-text-muted ml-2" - > + class="ml-2 text-theme-text-muted" + :class="{ 'hidden sm:block': props.responsive }" + > + + diff --git a/client/partials/NavBar.vue b/client/partials/NavBar.vue index 3e922c4..28e5040 100644 --- a/client/partials/NavBar.vue +++ b/client/partials/NavBar.vue @@ -1,7 +1,7 @@