Skip to content

Commit 81d2b1c

Browse files
committed
npx @tailwindcss/upgrade
1 parent f818210 commit 81d2b1c

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/layouts/split-layout/sidebar.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
};
1717
</script>
1818

19-
<aside class={['w-full flex-shrink-0', widthClasses[width], className]} {...props}>
19+
<aside class={['w-full shrink-0', widthClasses[width], className]} {...props}>
2020
{@render children()}
2121
</aside>

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/typography/code-block.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@
5454
);
5555
</script>
5656

57-
<pre class={['bg-muted relative rounded px-[0.6rem] py-[0.5rem] font-mono text-sm', className]} {...props}>{@html content}</pre>
57+
<pre class={['bg-muted relative rounded px-[0.6rem] py-2 font-mono text-sm', className]} {...props}>{@html content}</pre>

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/typography/code.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
let { children, class: className, ...props }: Props = $props();
77
</script>
88

9-
<code class={['bg-muted relative rounded px-[0.6rem] py-[0.5rem] font-mono text-sm', className]} {...props}>
9+
<code class={['bg-muted relative rounded px-[0.6rem] py-2 font-mono text-sm', className]} {...props}>
1010
{#if children}
1111
{@render children()}
1212
{/if}

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/context-menu/context-menu-content.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<ContextMenuPrimitive.Portal {...portalProps}>
1616
<ContextMenuPrimitive.Content
1717
class={cn(
18-
"bg-popover text-popover-foreground z-50 min-w-[8rem] rounded-md border p-1 shadow-md focus:outline-hidden",
18+
"bg-popover text-popover-foreground z-50 min-w-32 rounded-md border p-1 shadow-md focus:outline-hidden",
1919
className
2020
)}
2121
{...restProps}

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/context-menu/context-menu-sub-content.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<ContextMenuPrimitive.SubContent
1313
bind:ref
1414
class={cn(
15-
"bg-popover text-popover-foreground z-50 min-w-[8rem] rounded-md border p-1 shadow-lg focus:outline-hidden",
15+
"bg-popover text-popover-foreground z-50 min-w-32 rounded-md border p-1 shadow-lg focus:outline-hidden",
1616
className
1717
)}
1818
{...restProps}

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/dropdown-menu/dropdown-menu-content.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
bind:ref
1919
{sideOffset}
2020
class={cn(
21-
"bg-popover text-popover-foreground z-50 min-w-[8rem] overflow-hidden rounded-md border p-1 shadow-md",
21+
"bg-popover text-popover-foreground z-50 min-w-32 overflow-hidden rounded-md border p-1 shadow-md",
2222
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 outline-hidden",
2323
className
2424
)}

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/dropdown-menu/dropdown-menu-sub-content.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<DropdownMenuPrimitive.SubContent
1313
bind:ref
1414
class={cn(
15-
"bg-popover text-popover-foreground z-50 min-w-[8rem] rounded-md border p-1 shadow-lg focus:outline-hidden",
15+
"bg-popover text-popover-foreground z-50 min-w-32 rounded-md border p-1 shadow-lg focus:outline-hidden",
1616
className
1717
)}
1818
{...restProps}

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/select/select-content.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
bind:ref
2121
{sideOffset}
2222
class={cn(
23-
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 bg-popover text-popover-foreground relative z-50 max-h-96 min-w-[8rem] overflow-hidden rounded-md border shadow-md data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
23+
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 bg-popover text-popover-foreground relative z-50 max-h-96 min-w-32 overflow-hidden rounded-md border shadow-md data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
2424
className
2525
)}
2626
{...restProps}
2727
>
2828
<Select.ScrollUpButton />
2929
<SelectPrimitive.Viewport
3030
class={cn(
31-
"h-[var(--bits-select-anchor-height)] w-full min-w-[var(--bits-select-anchor-width)] p-1"
31+
"h-(--bits-select-anchor-height) w-full min-w-(--bits-select-anchor-width) p-1"
3232
)}
3333
>
3434
{@render children?.()}

src/Exceptionless.Web/ClientApp/src/lib/features/shared/components/ui/separator/separator.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
bind:ref
1515
class={cn(
1616
"bg-border shrink-0",
17-
orientation === "horizontal" ? "h-[1px] w-full" : "min-h-full w-[1px]",
17+
orientation === "horizontal" ? "h-px w-full" : "min-h-full w-px",
1818
className
1919
)}
2020
{orientation}

src/Exceptionless.Web/ClientApp/src/routes/(app)/project/[projectId]/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<span class="block truncate">{projectQuery.data.name}</span>
4040
</div>
4141
{/if}
42-
<span class="flex-shrink-0">Settings</span></Card.Title
42+
<span class="shrink-0">Settings</span></Card.Title
4343
>
4444
<Card.Description>Manage your project settings and integrations.</Card.Description>
4545
<Card.Action>

0 commit comments

Comments
 (0)