fix: improved colors and drag handle width

This commit is contained in:
Palanikannan1437 2024-03-14 13:08:24 +05:30
parent 73c91654eb
commit 768d141729

View File

@ -2,7 +2,7 @@
position: fixed;
opacity: 1;
transition: opacity ease-in 0.2s;
height: 18px;
height: 20px;
width: 15px;
display: grid;
place-items: center;
@ -12,9 +12,24 @@
background-color: rgb(var(--color-background-90));
}
.drag-handle:hover {
background-color: rgb(var(--color-background-80));
.ProseMirror:not(.dragging) .ProseMirror-selectednode {
outline: none !important;
cursor: grab;
background-color: #1f2937;
transition: background-color 0.2s;
box-shadow: none;
}
.drag-handle:hover {
background-color: #4d4d4d;
cursor: grab;
transition: background-color 0.2s;
}
.drag-handle:active {
background-color: #4d4d4d;
transition: background-color 0.2s;
cursor: grabbing;
}
.drag-handle.hidden {