Files
ClockyFly/resources/js/components/ui/sidebar/SidebarFooter.vue
Darius Rapalis 36f924a16a
Some checks failed
tests / ci (8.5) (push) Failing after 2m31s
linter / quality (push) Failing after 2m55s
tests / ci (8.3) (push) Failing after 3m25s
tests / ci (8.4) (push) Failing after 3m49s
Model: Qwen 3.6 35B A3
Prompt: simplify and fix dashboard layout. Sidebars are now a mess, weird gaps everywhere, make it simple and modern keeping general color scheme

Stats:
Context: 41,492 tokens
Time: 6m 15s
2026-04-28 23:16:20 +03:00

19 lines
348 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<div
data-slot="sidebar-footer"
data-sidebar="footer"
:class="cn('flex flex-col gap-1 p-2', props.class)"
>
<slot />
</div>
</template>