diff --git a/app/app.vue b/app/app.vue
index 882403d..6f89178 100644
--- a/app/app.vue
+++ b/app/app.vue
@@ -47,7 +47,7 @@ h6 {
}
img.default {
- @apply rounded-md border border-gray-200 dark:border-gray-800;
+ @apply rounded-lg border border-gray-200 dark:border-gray-800;
}
.icon {
diff --git a/app/components/content/ImageCaption.vue b/app/components/content/ImageCaption.vue
index 140def8..e2a3a30 100644
--- a/app/components/content/ImageCaption.vue
+++ b/app/components/content/ImageCaption.vue
@@ -3,14 +3,27 @@ defineProps<{
src?: string
alt?: string
caption?: string
+ imgClass?: string
}>()
-
+
+
+
+
+
- {{ caption }}
+
+ {{ caption }}
+
diff --git a/app/components/content/TextFlow.vue b/app/components/content/TextFlow.vue
index b903dd2..04dd3ce 100644
--- a/app/components/content/TextFlow.vue
+++ b/app/components/content/TextFlow.vue
@@ -9,18 +9,18 @@ const props = withDefaults(defineProps(), {
-