opnsense connections page ui improvements

This commit is contained in:
2024-11-02 01:53:11 -07:00
parent 922e4c0580
commit d526839bfa
13 changed files with 244 additions and 34 deletions

View File

@@ -0,0 +1,15 @@
<script lang="ts">
import type { HTMLTableAttributes } from "svelte/elements";
import { cn } from "$lib/utils.js";
type $$Props = HTMLTableAttributes;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<div class="relative w-full overflow-auto">
<table class={cn("w-full caption-bottom text-sm", className)} {...$$restProps}>
<slot />
</table>
</div>