hide scrollbar when not hovering

This commit is contained in:
Guilhem
2024-10-29 08:46:16 +01:00
parent 7779079fca
commit 7f50d92d34
@@ -110,4 +110,13 @@
width: 0 !important;
border: none !important;
}
:global(.splitpanes__pane) {
overflow-y: auto;
scrollbar-width: none;
}
:global(.splitpanes__pane:hover) {
scrollbar-width: thin;
}
</style>