Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaByte committed Jan 6, 2024
1 parent 4cd5217 commit 7c90219
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ body .markdown-body {
}

.gutter {
z-index: 99;
background-color: #796666;
background-repeat: no-repeat;
background-position: 50%;
Expand Down Expand Up @@ -55,3 +56,31 @@ mark::before {
font-weight: bold;
margin-bottom: 5px;
}

::-webkit-scrollbar {
width: 10px;
}

::-webkit-scrollbar-thumb {
background-color: var(--fallback-bc,oklch(var(--bc)/.2));
border-radius: 4px;
}

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


body {
scrollbar-width: thin;
scrollbar-color: var(--fallback-bc,oklch(var(--bc)/.2)) var(--fallback-bc,oklch(var(--bc)/.2));
}

body::-moz-scrollbar-track {
background-color: transparent;
}

body::-moz-scrollbar-thumb {
background-color: var(--fallback-bc,oklch(var(--bc)/.2));
border-radius: 6px;
}

0 comments on commit 7c90219

Please sign in to comment.