Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ieedan committed Nov 15, 2024
1 parent fa0fbf4 commit 1a05dff
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>

<div bind:this={ref} class={cn("p-6", className)} {...restProps}>
<div bind:this={ref} class={cn("p-6 pt-0", className)} {...restProps}>
{@render children?.()}
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>

<div bind:this={ref} class={cn("flex flex-col space-y-1.5 p-6 pb-0", className)} {...restProps}>
<div bind:this={ref} class={cn("flex flex-col space-y-1.5 p-6", className)} {...restProps}>
{@render children?.()}
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
role="heading"
aria-level={level}
bind:this={ref}
class={cn("text-lg font-semibold leading-none tracking-tight", className)}
class={cn("text-2xl font-semibold leading-none tracking-tight", className)}
{...restProps}
>
{@render children?.()}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>

<div bind:this={ref} class={cn("p-6", className)} {...restProps}>
<div bind:this={ref} class={cn("p-6 pt-0", className)} {...restProps}>
{@render children?.()}
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
</script>

<div bind:this={ref} class={cn("flex flex-col space-y-1.5 p-6 pb-0", className)} {...restProps}>
<div bind:this={ref} class={cn("flex flex-col space-y-1.5 p-6", className)} {...restProps}>
{@render children?.()}
</div>

0 comments on commit 1a05dff

Please sign in to comment.