36 lines
624 B
SCSS
36 lines
624 B
SCSS
.preview-file,.preview-reference{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
background: var(--background-2);
|
|
border-radius: 12px;
|
|
.image{
|
|
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.trash-action{
|
|
display: none;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
&:hover{
|
|
background: var(--background-3);
|
|
.trash-action{
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
.preview-reference{
|
|
background: var(--background-2);
|
|
padding: 10px 20px;
|
|
margin-bottom: 4px;
|
|
}
|
|
.sortable-ghost{
|
|
border: 2px dashed var(--primary);
|
|
}
|
|
|
|
.sortable-drag { opacity: 0 !important; } .sortable-ghost { opacity: 1 !important; } |