File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ useHead({
26
26
27
27
<template >
28
28
<ConfigProvider :use-id =" useIdFunction" >
29
+ <NuxtLoadingIndicator />
30
+ <VitePwaManifest />
29
31
<div v-if =" !isClerkLoaded || isEnspireLoading" class =" absolute z-100 h-screen w-screen bg-background" >
30
32
<div class =" h-full w-full flex flex-col items-center justify-center space-y-6" >
31
33
<div class =" flex justify-center space-x-1" >
@@ -39,8 +41,6 @@ useHead({
39
41
</div >
40
42
<div >
41
43
<NuxtLayout class =" z-10" >
42
- <NuxtLoadingIndicator />
43
- <VitePwaManifest />
44
44
<NuxtPage />
45
45
</NuxtLayout >
46
46
</div >
Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
2
import type { AllClubs } from ' @@/types/api/user/all_clubs'
3
- import {
4
- ChevronRight ,
5
- ChevronsUpDown ,
6
- } from ' lucide-vue-next'
7
3
import { useClerk , useUser } from ' vue-clerk'
8
4
9
5
const { user } = useUser ()
@@ -270,7 +266,7 @@ const sidebarData = ref({
270
266
</SidebarFooter >
271
267
<SidebarRail />
272
268
</Sidebar >
273
- <SidebarInset >
269
+ <SidebarInset class = " h-full flex " >
274
270
<slot />
275
271
</SidebarInset >
276
272
</SidebarProvider >
Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ if (clubs.value) {
19
19
20
20
<template >
21
21
<CustomSidebar >
22
- <header class =" group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12 h-16 flex shrink-0 items-center gap-2 transition-[width,height] ease-linear" >
22
+ <header class =" group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12 sticky top-0 z-20 h-14 flex shrink-0 items-center gap-2 bg-background transition-[width,height] ease-linear" >
23
23
<div class =" flex items-center gap-2 px-4" >
24
24
<SidebarTrigger class =" -ml-1" />
25
25
<Separator orientation =" vertical" class =" mr-2 h-4" />
26
26
<CustomBreadcrumb />
27
27
</div >
28
28
</header >
29
- <ScrollArea class =" h-full w-full px-4 pt-8 lg:px-8" >
29
+ <ScrollArea class =" z-10 w-full flex-1 px-4 pt-6 lg:px-8" >
30
30
<div class =" pb-24" >
31
31
<main >
32
32
<slot />
You can’t perform that action at this time.
0 commit comments