fix: dialog movement (#227)

* fix: dialog movement

* chore: lint
This commit is contained in:
Razboy20
2024-06-03 20:53:39 -05:00
committed by GitHub
parent 863d980b2d
commit bc5d68ce18
3 changed files with 34 additions and 34 deletions

View File

@@ -17,25 +17,25 @@
[data-rfd-drag-handle-context-id=':r1:'] {
cursor: move;
}
}
::-webkit-scrollbar {
width: 14px;
height: 14px;
background: transparent;
}
::-webkit-scrollbar-thumb {
border: 3px solid #fff;
border-radius: 7px;
min-height: 40px;
box-shadow: none;
background: rgb(218, 220, 224);
}
:hover::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
background: rgb(189, 193, 198);
}
::-webkit-scrollbar {
width: 14px;
height: 14px;
background: transparent;
}
::-webkit-scrollbar-thumb {
border: 3px solid #fff;
border-radius: 7px;
min-height: 40px;
box-shadow: none;
background: rgb(218, 220, 224);
}
:hover::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover {
background: rgb(189, 193, 198);
}
::-webkit-scrollbar-thumb:active {
background: rgb(128, 134, 139);
::-webkit-scrollbar-thumb:active {
background: rgb(128, 134, 139);
}
}