UI Bugfixes

This commit is contained in:
2024-10-10 19:23:13 +02:00
parent 913e067ad2
commit 49b436d588
11 changed files with 94 additions and 50 deletions

View File

@@ -3,6 +3,8 @@ defineProps({
/** Image to display on the left side (if prepend slot is not in use) */
image: String,
title: String,
/** Make the CardView click- and hoverable */
link: {
type: Boolean,
@@ -16,9 +18,7 @@ defineProps({
height: {
type: Number,
default: 140
},
colorHeader: String
}
})
</script>
@@ -76,7 +76,15 @@ defineProps({
<v-sheet
:height="height"
>
<slot name="content" />
<div>
<div class="text-h4 font-weight-black pt-2 h-100">
{{ title }}
</div>
<div class="text-disabled">
<slot name="content" />
</div>
</div>
</v-sheet>
</v-skeleton-loader>
</v-col>