diff --git a/components/header.php b/components/header.php index 2683623..6641dd2 100644 --- a/components/header.php +++ b/components/header.php @@ -53,6 +53,19 @@ text-decoration: none; color: var(--accent); } + + ::-webkit-scrollbar { + z-index: 999; /* Adjust the value as needed */ + width: 8px; /* Set the width of the scrollbar */ + } + + ::-webkit-scrollbar-thumb { + background-color: var(--accent); /* Color of the thumb (dragged part) */ + } + + ::-webkit-scrollbar-track { + background-color: var(--primary); /* Color of the track (background) */ + } diff --git a/components/navbar.php b/components/navbar.php index e20ac23..0f3f275 100644 --- a/components/navbar.php +++ b/components/navbar.php @@ -22,6 +22,7 @@ function getRelativePath($absolutePath, $parentTraversals) {