Fix scrollbar on Firefox

This commit is contained in:
Gustavo Lelis 2020-04-14 09:43:02 -03:00 committed by James A. Petts
parent 7dccf77c7d
commit 947f671ab1

View File

@ -1,4 +1,8 @@
/* CUSTOM OHIF SCROLLBAR */
.ohif-scrollbar {
scrollbar-color: #0944b3 transparent;
}
.ohif-scrollbar::-webkit-scrollbar {
@apply w-2;
}
@ -16,6 +20,11 @@
@apply bg-primary-main;
}
/* INVISIBLE SCROLLBAR */
.invisible-scrollbar {
scrollbar-width: none;
}
.invisible-scrollbar::-webkit-scrollbar {
@apply hidden;
}