diff --git a/client/src/components/content-forms/ImageForm.vue b/client/src/components/content-forms/ImageForm.vue index c129893e..0a1203c5 100644 --- a/client/src/components/content-forms/ImageForm.vue +++ b/client/src/components/content-forms/ImageForm.vue @@ -1,6 +1,7 @@ @@ -11,5 +12,26 @@ @import "@/styles/_variables.scss"; .image-form { + &__file-input { + width: 0.1px; + height: 0.1px; + overflow: hidden; + opacity: 0; + position: absolute; + z-index: -1; + + & + label { + cursor: pointer; + background-color: $color-lightgrey; + height: 150px; + display: flex; + width: 100%; + justify-content: center; + align-items: center; + font-family: $sans-serif-font-family; + font-weight: 500; + text-decoration: underline; + } + } }