Skip to content

Commit

Permalink
🎨 Fix scrollbar.
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb authored Dec 12, 2023
1 parent 22ef6a4 commit b20866a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
:root {
--sb-track-color: rgb(229 229 229 / 0.5);
--sb-thumb-color: #d4d4d4;
--sb-size: 7px;
--sb-size: 8px;
}

.dark {
--sb-track-color: #171717;
--sb-thumb-color: #404040;
--sb-size: 7px;
--sb-size: 8px;
}
}

Expand All @@ -34,15 +34,15 @@
background: var(--sb-thumb-color);
}

aside::-webkit-scrollbar {
nav::-webkit-scrollbar {
width: var(--sb-size);
}

aside::-webkit-scrollbar-track {
nav::-webkit-scrollbar-track {
background: var(--sb-track-color);
}

aside::-webkit-scrollbar-thumb {
nav::-webkit-scrollbar-thumb {
background: var(--sb-thumb-color);
}
}
Expand Down

1 comment on commit b20866a

@vercel
Copy link

@vercel vercel bot commented on b20866a Dec 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

svgl – ./

svgl-pheralb.vercel.app
svgl-git-main-pheralb.vercel.app
svgl.vercel.app

Please sign in to comment.