28 lines
443 B
CSS
28 lines
443 B
CSS
.file-uploader-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.file-uploader input[type="file"] {
|
|
display: none;
|
|
}
|
|
|
|
.file-uploader {
|
|
align-self: flex-start;
|
|
background: white;
|
|
color: black;
|
|
max-width: 100px;
|
|
border-radius: 10px;
|
|
padding: 6px 12px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.image-preview {
|
|
width: 82px;
|
|
height: 60px;
|
|
border-radius: 10px;
|
|
}
|