diff --git a/src/client/theme-default/components/VPFeature.vue b/src/client/theme-default/components/VPFeature.vue index 2881e143e63f..cb97c36bb246 100644 --- a/src/client/theme-default/components/VPFeature.vue +++ b/src/client/theme-default/components/VPFeature.vue @@ -21,8 +21,8 @@ defineProps<{ v-if="typeof icon === 'object'" :image="icon" :alt="icon.alt" - :height="icon.height" - :width="icon.width" + :height="icon.height || 48" + :width="icon.width || 48" />

@@ -60,8 +60,6 @@ defineProps<{ } .VPFeature:deep(.VPImage) { - width: 48px; - height: 48px; margin-bottom: 20px; }