feat: replace GithubHistory with GitHistory for combined GitHub and Gitea event display, and add scrollbar utility styles.

This commit is contained in:
2025-12-15 21:20:56 +00:00
parent 16a3025929
commit 8687d2c444
6 changed files with 215 additions and 124 deletions

View File

@@ -39,4 +39,16 @@ ul {
canvas {
touch-action: none;
}
/* Utility to hide scrollbar */
.hide-scrollbar {
-ms-overflow-style: none !important;
/* IE and Edge */
scrollbar-width: none !important;
/* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
display: none !important;
}