61 lines
939 B
SCSS
61 lines
939 B
SCSS
.upload-area,
|
|
.file-area {
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 8px;
|
|
width: 100%;
|
|
background: var(--iqser-alt-background);
|
|
|
|
&.drag-over {
|
|
background-color: var(--iqser-file-drop-drag-over);
|
|
}
|
|
}
|
|
|
|
.upload-area {
|
|
gap: 16px;
|
|
height: 88px;
|
|
cursor: pointer;
|
|
|
|
mat-icon,
|
|
div {
|
|
opacity: 0.5;
|
|
transition: 0.1s;
|
|
}
|
|
|
|
mat-icon {
|
|
margin-left: 32px;
|
|
}
|
|
|
|
div {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
.file-area {
|
|
gap: 10px;
|
|
height: 48px;
|
|
|
|
mat-icon:first-child {
|
|
opacity: 0.5;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
mat-icon:last-child {
|
|
margin-left: auto;
|
|
margin-right: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
mat-icon {
|
|
transform: scale(0.7);
|
|
}
|
|
|
|
p {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
max-width: 490px;
|
|
}
|
|
}
|