mirror of
https://github.com/unraid/api.git
synced 2026-01-04 07:29:48 -06:00
11 lines
288 B
Vue
11 lines
288 B
Vue
<script lang="ts" setup>
|
|
// shadow-[var(--ring-offset-shadow)_var(--ring-shadow)_var(--shadow-beta)]
|
|
// border border-solid border-beta/5
|
|
</script>
|
|
|
|
<template>
|
|
<nav class="flex flex-col gap-y-8px p-8px bg-alpha rounded-lg shadow-xl shadow-orange/10">
|
|
<slot />
|
|
</nav>
|
|
</template>
|