Separate Links header from justify-between layout
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 15s

Move site and social link groups into their own flex container
so justify-between spaces them apart without including the header.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-30 03:04:22 +01:00
parent e69942a7e8
commit 08c29a77a0

View File

@@ -20,8 +20,9 @@ const social_links = [
</script> </script>
<template> <template>
<div class="flex flex-col justify-between overflow-auto"> <div class="flex flex-col overflow-auto">
<Header>Links</Header> <Header>Links</Header>
<div class="flex flex-col justify-between flex-1">
<div class="flex flex-col gap-1"> <div class="flex flex-col gap-1">
<RouterTable :linkArr="site_links" /> <RouterTable :linkArr="site_links" />
</div> </div>
@@ -29,4 +30,5 @@ const social_links = [
<LinkTable :items="social_links" /> <LinkTable :items="social_links" />
</div> </div>
</div> </div>
</div>
</template> </template>