docs: change cards radius to rounded-lg (yep, again)

This commit is contained in:
itsTPM 2024-02-03 19:44:15 +03:00
parent 5c69b2160c
commit 348fac9c3b
No known key found for this signature in database
GPG Key ID: 43D1D7E07F624BE1
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ const props = defineProps<{
<div
:class="
cn(
'rounded-xl border bg-card text-card-foreground shadow',
'rounded-lg border bg-card text-card-foreground shadow',
props.class,
)
"

View File

@ -7,7 +7,7 @@
"files": [
{
"name": "Card.vue",
"content": "<script setup lang=\"ts\">\nimport type { HTMLAttributes } from 'vue'\nimport { cn } from '@/lib/utils'\n\nconst props = defineProps<{\n class?: HTMLAttributes['class']\n}>()\n</script>\n\n<template>\n <div\n :class=\"\n cn(\n 'rounded-xl border bg-card text-card-foreground shadow',\n props.class,\n )\n \"\n >\n <slot />\n </div>\n</template>\n"
"content": "<script setup lang=\"ts\">\nimport type { HTMLAttributes } from 'vue'\nimport { cn } from '@/lib/utils'\n\nconst props = defineProps<{\n class?: HTMLAttributes['class']\n}>()\n</script>\n\n<template>\n <div\n :class=\"\n cn(\n 'rounded-lg border bg-card text-card-foreground shadow',\n props.class,\n )\n \"\n >\n <slot />\n </div>\n</template>\n"
},
{
"name": "CardContent.vue",