diff --git a/components/FormInputImage.vue b/components/FormInputImage.vue index 5c1b8b2..fb17c8a 100644 --- a/components/FormInputImage.vue +++ b/components/FormInputImage.vue @@ -10,7 +10,7 @@ :src="croppieImage" :stencil-props="{ aspectRatio: 1 }" /> -
+
@@ -31,7 +31,7 @@ export default { components: { Cropper }, props: { imageUrl: { - type: String, + type: [String, Object], default: null, }, }, @@ -106,5 +106,10 @@ export default { } .input { max-width: 100%; + margin-bottom: 1em; +} + +.buttons { + margin-top: 1em; } diff --git a/components/ProductForm.vue b/components/ProductForm.vue index 22c3781..2dbdefe 100644 --- a/components/ProductForm.vue +++ b/components/ProductForm.vue @@ -1,12 +1,10 @@