feat(right-sidebar): update hiding scroll bar's styles

related issue https://github.com/logseq/logseq/issues/529#issuecomment-721325528
This commit is contained in:
Runjuu
2020-11-04 09:49:53 +08:00
committed by Tienson Qin
parent b5aad406aa
commit 646960a00c
2 changed files with 13 additions and 4 deletions

View File

@@ -1317,3 +1317,13 @@ a.tag:hover {
.translate-x-5 {
--transform-translate-x: 1.25rem;
}
/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}