Files
lucent-laravel/front/sass/_preview.scss
T
2024-08-16 16:00:48 +03:00

36 lines
606 B
SCSS

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