mejorar login y sidebar: SVG logo, arreglar card estilo docs, corregir Label, agregar componentes de tipografia

This commit is contained in:
2026-05-26 01:06:05 -05:00
parent cd97b16daa
commit 045ff796ef
18 changed files with 256 additions and 38 deletions
@@ -0,0 +1,14 @@
<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<ul :class="cn('my-6 ml-6 list-disc [&>li]:mt-2', props.class)">
<slot />
</ul>
</template>