28 lines
351 B
SCSS
28 lines
351 B
SCSS
|
|
.preview-file{
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 10px;
|
||
|
|
background: var(--background);
|
||
|
|
border-radius: 12px;
|
||
|
|
.image{
|
||
|
|
|
||
|
|
|
||
|
|
display: flex;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
.trash-action{
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
&:hover{
|
||
|
|
filter: brightness(95%);
|
||
|
|
.trash-action{
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.sortable-ghost{
|
||
|
|
border: 2px dashed var(--primary);
|
||
|
|
}
|