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

This reverts commit 348fac9c3b.
This commit is contained in:
itsTPM 2024-02-03 20:21:48 +03:00
parent 6ec8837407
commit 528b0fd0cf
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 <div
:class=" :class="
cn( cn(
'rounded-lg border bg-card text-card-foreground shadow', 'rounded-xl border bg-card text-card-foreground shadow',
props.class, props.class,
) )
" "

View File

@ -7,7 +7,7 @@
"files": [ "files": [
{ {
"name": "Card.vue", "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-lg 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-xl border bg-card text-card-foreground shadow',\n props.class,\n )\n \"\n >\n <slot />\n </div>\n</template>\n"
}, },
{ {
"name": "CardContent.vue", "name": "CardContent.vue",