- Removed unnecessary background color from the data table toolbar for a cleaner look. - Updated text color in sortable table headers to enhance readability and maintain a cohesive theme. - Adjusted padding and border styles in user page components for better alignment and visual consistency.
22 lines
358 B
Svelte
22 lines
358 B
Svelte
<script lang="ts">
|
|
import { cn } from '$lib/utils.js';
|
|
import type { Snippet } from 'svelte';
|
|
|
|
let {
|
|
class: className,
|
|
children
|
|
}: {
|
|
class?: string;
|
|
children: Snippet;
|
|
} = $props();
|
|
</script>
|
|
|
|
<div
|
|
class={cn(
|
|
'flex flex-wrap items-center justify-between gap-2 border-b border-border px-3 py-2',
|
|
className
|
|
)}
|
|
>
|
|
{@render children()}
|
|
</div>
|