Skip to content

Commit

Permalink
style: scrollbar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
elidianaandrade committed Nov 8, 2023
1 parent 74dbdea commit d82f293
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ html[data-theme='light'] .technologies__logo {
box-sizing: border-box;
vertical-align: baseline;
list-style: none;
scrollbar-width: thin;
scrollbar-color: var(--secondary-bg-color) transparent;
}

body {
Expand All @@ -51,6 +53,19 @@ body {
color: var(--text-color);
}

::-webkit-scrollbar {
width: 0.5rem;
}

::-webkit-scrollbar-track {
background-color: transparent;
}

::-webkit-scrollbar-thumb {
background: var(--secondary-bg-color);
border-radius: 50rem;
}

a {
text-decoration: none;
color: var(--text-color);
Expand Down

0 comments on commit d82f293

Please sign in to comment.