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

30 lines
409 B
SCSS

.preview-file{
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;
}
}
}
.sortable-ghost{
border: 2px dashed var(--primary);
}