A simple to-do app focused on tasks that can be completed within a specific time span.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixed sheet padding bottom

+3 -1
+3 -1
app/components/Utils/Sheet.vue
··· 22 22 const emit = defineEmits<{ close: [] }>(); 23 23 24 24 const useModal = useMediaQuery("(min-width: 40rem)"); 25 + 26 + const isPwa = useIsPwa(); 25 27 </script> 26 28 27 29 <template> ··· 35 37 <DrawerContent 36 38 class="bg-surface fixed bottom-0 z-30 flex h-106 w-dvw flex-col gap-2 rounded-t-lg drop-shadow-lg" 37 39 > 38 - <div class="h-full"> 40 + <div class="h-full" :data-pwa="isPwa"> 39 41 <VisuallyHidden> 40 42 <DrawerTitle>{{ title }}</DrawerTitle> 41 43 <DrawerDescription>{{ title }}</DrawerDescription>