feat(ui): align top navigation capsules with GL glass header

This commit is contained in:
Ruslan Bakiev
2026-04-02 16:56:20 +07:00
parent d72de0f8c3
commit 42a90cd2dc
3 changed files with 127 additions and 30 deletions

View File

@@ -6,7 +6,7 @@ const isLoginPage = computed(() => route.path === '/login');
<template>
<div class="lk-shell" data-theme="aqua">
<AppHeader v-if="!isLoginPage" />
<main class="mx-auto w-full max-w-7xl p-4 md:p-6 lg:p-8">
<main class="mx-auto w-full max-w-7xl p-4 pt-[92px] md:p-6 md:pt-[96px] lg:p-8 lg:pt-[96px]">
<NuxtPage />
</main>
</div>