chore: use transparent scrollbar

This commit is contained in:
talksik
2026-03-12 07:32:50 -07:00
parent 4b675b7f7a
commit 843ab95ec2
+24
View File
@@ -121,6 +121,30 @@
}
}
/* Scrollbar styling */
* {
scrollbar-width: thin;
scrollbar-color: oklch(1 0 0 / 20%) transparent;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: oklch(1 0 0 / 20%);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: oklch(1 0 0 / 35%);
}
/* Frameless window drag regions */
.drag-region {
-webkit-app-region: drag;