Skip to content

Commit

Permalink
🛠️ global.css -> Added scrollbar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
g9aerospace committed Feb 23, 2024
1 parent dd61e57 commit 5120821
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions assets/css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,19 @@ section {
animation: fadeInUp 1s ease forwards;
}

/* Scrollbar Styling */
body::-webkit-scrollbar {
width: 5px; /* Set the width of the scrollbar */
}

body::-webkit-scrollbar-thumb {
background-color: #333; /* Set the color of the thumb (the draggable part) */
}

body::-webkit-scrollbar-track {
background-color: #000; /* Set the color of the track (the area behind the thumb) */
}

@keyframes fadeInUp {
from {
opacity: 0;
Expand Down

0 comments on commit 5120821

Please sign in to comment.