add rounded corners and transition

This commit is contained in:
Konstantinos Kaloutas
2023-07-13 19:37:20 +03:00
committed by Tienson Qin
parent ff77844767
commit ef7672de6a

View File

@@ -622,12 +622,16 @@ html[data-theme='dark'] {
@apply relative;
height: 8px;
&::after {
@apply absolute block w-full rounded;
top: 2px;
height: 4px;
content: " ";
transition: background-color 200ms;
}
&.drag-over {
&::after {
@apply absolute block w-full;
top: 2px;
height: 4px;
content: " ";
background-color: var(--ls-active-primary-color);
}
}