32 lines
477 B
CSS
32 lines
477 B
CSS
.file-drop-zone {
|
|
width: 100%;
|
|
border: 3px dotted #fb275d;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 2px;
|
|
min-height: 100px;
|
|
}
|
|
|
|
.hover {
|
|
border-style: solid;
|
|
background-color: #00ca71;
|
|
}
|
|
|
|
.image-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.image-container img {
|
|
width: 50%;
|
|
}
|
|
|
|
::deep input[type=file] {
|
|
width: 100%;
|
|
padding: 20px;
|
|
}
|
|
|
|
.error-message-container {
|
|
color: red;
|
|
text-align: center;
|
|
} |