55 lines
988 B
SCSS
55 lines
988 B
SCSS
|
|
@import '../../../styleConstants.scss';
|
||
|
|
|
||
|
|
#cart-upload-documents-container{
|
||
|
|
border-radius: $box-radius;
|
||
|
|
background: $whiteColor;
|
||
|
|
|
||
|
|
.upload-file-drop-zone {
|
||
|
|
width: 100%;
|
||
|
|
border: 3px dashed $borderColor;
|
||
|
|
margin-top: 1rem;
|
||
|
|
height: 5rem;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
.drop-zone-text {
|
||
|
|
text-align: center;
|
||
|
|
padding: 1.3rem 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.uploaded {
|
||
|
|
color: #155724;
|
||
|
|
}
|
||
|
|
|
||
|
|
.next-btn {
|
||
|
|
float: right;
|
||
|
|
cursor: pointer;
|
||
|
|
background-color: $whiteColor;
|
||
|
|
color: $darkGreyColor;
|
||
|
|
}
|
||
|
|
|
||
|
|
.cart-subtitle {
|
||
|
|
font-weight: $font-weight;
|
||
|
|
padding-top: 0.3rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.upload-layer{
|
||
|
|
background: $whiteColor;
|
||
|
|
padding-bottom: 1rem;
|
||
|
|
|
||
|
|
.document-link{
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media all and (max-width: 480px) {
|
||
|
|
#cart-upload-documents-container {
|
||
|
|
margin-top: 1rem;
|
||
|
|
|
||
|
|
.upload-file-drop-zone {
|
||
|
|
height: 8rem;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|