diff --git a/client/web/compose/src/components/PageBlocks/Navigation/Base.vue b/client/web/compose/src/components/PageBlocks/Navigation/Base.vue index 2e8359c8b..b8d15a3da 100644 --- a/client/web/compose/src/components/PageBlocks/Navigation/Base.vue +++ b/client/web/compose/src/components/PageBlocks/Navigation/Base.vue @@ -20,7 +20,10 @@ :key="`navItem-${index}`" :disabled="!navItem.options.enabled" :style="{ order: index, color: navItem.options.textColor, background: navItem.options.backgroundColor, justifyContent: options.display.alignment }" - :link-attrs="{ style: `color: ${navItem.options.textColor}` }" + :link-attrs="{ + style: `color: ${navItem.options.textColor}`, + }" + link-classes="h-100 w-100 d-flex align-items-center justify-content-center" :href="generateHrefAttributeLink(navItem)" :to="generateToAttributeLink(navItem)" :target="selectTargetOption(navItem.options.item.target)" @@ -29,7 +32,7 @@