Files
lucent-laravel/front/sass/_preview.scss
T

30 lines
409 B
SCSS
Raw Normal View History

2024-08-15 22:11:26 +03:00
.preview-file{
display: flex;
align-items: center;
2024-08-16 14:34:39 +03:00
justify-content: space-between;
2024-08-15 22:11:26 +03:00
gap: 10px;
background: var(--background);
border-radius: 12px;
.image{
display: flex;
}
.trash-action{
display: none;
2024-08-16 14:34:39 +03:00
margin-right: 20px;
2024-08-15 22:11:26 +03:00
}
&:hover{
filter: brightness(95%);
.trash-action{
display: block;
}
}
}
.sortable-ghost{
border: 2px dashed var(--primary);
}