prettier tailwind class sorting

This commit is contained in:
2025-07-16 10:18:57 +02:00
parent c9bf3912f8
commit d0d54b09ba
9 changed files with 25 additions and 20 deletions

View File

@@ -20,11 +20,11 @@ const breadcrumbs = computed(() => getBreadcrumbs(route.path));
<template>
<SidebarProvider>
<AppSidebar />
<main class="w-full grow overflow-hidden flex flex-col">
<main class="flex w-full grow flex-col overflow-hidden">
<header
class="h-16 flex items-center gap-2 transition-[width,height] ease-linear group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12"
class="flex h-16 items-center gap-2 transition-[width,height] ease-linear group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12"
>
<div class="items-center flex gap-2 px-4 w-full">
<div class="flex w-full items-center gap-2 px-4">
<SidebarTrigger class="[&_svg]:size-4" />
<Separator orientation="vertical" class="mr-2 !h-4" />
<Breadcrumb>
@@ -76,7 +76,7 @@ const breadcrumbs = computed(() => getBreadcrumbs(route.path));
<Icon name="lucide:upload" />
<div
v-if="uploadStore.progress != null"
class="w-1.5 h-1.5 rounded-full bg-primary absolute top-1 right-1 animate-pulse"
class="bg-primary absolute top-1 right-1 h-1.5 w-1.5 animate-pulse rounded-full"
></div>
</Button>
</UploadDialog>