Files
ax3Client/src/styles/upload-modal.scss
Kenneth Jannette 4c1fb67383 first commit
2024-01-11 18:24:41 -06:00

23 lines
436 B
SCSS
Executable File

.file-uploader {
display: flex;
> label {
flex: 1 0;
}
.drag-box {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 70px;
border: $border-width solid $border-color;
border-radius: $border-radius;
background-color: #fff;
cursor: pointer;
}
.filled {
border: $border-width solid rgb(96, 205, 255);
background-color: rgb(241, 241, 241);
}
}
//