feat: add custom file input for images

This commit is contained in:
2026-02-07 23:00:12 -03:00
parent e803c670f4
commit 2c172dd3d1
4 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
.image-preview {
&__container {
display: flex;
justify-content: center;
margin-bottom: 16px;
}
}
.file-input {
display: none;
}
.file-upload {
align-items: center;
box-sizing: border-box;
display: inline-flex;
justify-content: space-between;
min-width: 196px;
width: 100%;
&__description {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}