fix: make scrollbars visible, fixed #2437, #2411

This commit is contained in:
liyasthomas
2022-06-18 18:14:02 +05:30
parent c1cc1ce295
commit 8fefd37862

View File

@@ -15,6 +15,7 @@
::-webkit-scrollbar-track {
@apply bg-transparent;
@apply border-solid border-l border-t-0 border-b-0 border-r-0 border-dividerLight;
}
::-webkit-scrollbar-thumb {
@@ -27,17 +28,17 @@
::-webkit-scrollbar {
@apply w-4;
@apply h-4;
@apply h-0;
}
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
// .hide-scrollbar {
// -ms-overflow-style: none;
// scrollbar-width: none;
// }
.hide-scrollbar::-webkit-scrollbar {
@apply hidden;
}
// .hide-scrollbar::-webkit-scrollbar {
// @apply hidden;
// }
input::placeholder,
textarea::placeholder,