Skip to content

Commit

Permalink
Style the scrollbars for Webkit based browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Aug 16, 2022
1 parent d3a03e7 commit 260f2fa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions templates/html/doxygen.css
Expand Up @@ -4,6 +4,19 @@ body {
scrollbar-color: var(--scrollbar-thumb-color) var(--scrollbar-background-color);
}

::-webkit-scrollbar {
background-color: var(--scrollbar-background-color);
height: 10px;
width: 10px;
}
::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb-color);
border-radius: 8px;
}
::-webkit-scrollbar-corner {
background-color: var(--scrollbar-background-color);
}

body, table, div, p, dl {
font-weight: 400;
font-size: 14px;
Expand Down

0 comments on commit 260f2fa

Please sign in to comment.