feat: style scrollbar (#135)

* feat: style scrollbar

* refactor(index.css): increase the border radius a bit

* chore: revert prettier styling
This commit is contained in:
Stavros
2024-08-25 20:05:55 +03:00
committed by GitHub
parent 42e2e3463e
commit 68824935e9

View File

@@ -89,3 +89,22 @@
--chart-5: 340 75% 55%;
} */
}
/* scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: hsla(var(--border) / 0.8);
border-radius: 0.25rem;
}
::-webkit-scrollbar-thumb:hover {
background-color: hsl(var(--border));
}