Persist sort priority!

This commit is contained in:
Gregory Schier
2023-03-19 00:48:09 -07:00
parent d9b38efd97
commit c4ab045e57
17 changed files with 457 additions and 243 deletions

View File

@@ -23,12 +23,28 @@
cursor: default;
}
.destroy-pointer-event,
.destroy-pointer-event * {
pointer-events: none !important;
}
/* Style the scrollbars */
::-webkit-scrollbar-corner,
::-webkit-scrollbar {
@apply w-1.5 h-1.5 bg-gray-300/10;
@apply w-1.5 h-1.5;
}
.scrollbar-track,
::-webkit-scrollbar-corner,
::-webkit-scrollbar {
@apply bg-gray-300/10;
}
::-webkit-scrollbar-thumb {
@apply hover:bg-gray-300 rounded-full;
}
.scrollbar-thumb,
::-webkit-scrollbar-thumb {
@apply bg-gray-200 hover:bg-gray-300 rounded-full;
}