Skip to content

Commit

Permalink
remove scroll bar
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed Jan 21, 2024
1 parent 0c35483 commit 348badc
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions docs/source/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,22 @@ html[data-theme="dark"] {
--pst-color-secondary: var(--pst-color-primary);
}

.form-control {
.form-control:focus,:focus-visible {
border: none;
box-shadow: none;
outline: none;
background-color: var(--pst-color-background);
color: var(--pst-color-text-base);

&:focus,
&:focus-visible {
border: none;
box-shadow: none;
outline: none;
background-color: var(--pst-color-background);
color: var(--pst-color-text-muted);
}
color: var(--pst-color-text-muted);
}

.bd-sidebar:not(:hover) {
-ms-overflow-style: none;
}

.bd-sidebar:not(:hover)::-webkit-scrollbar {
background: var(--pst-color-background);
}

.bd-sidebar:not(:hover)::-webkit-scrollbar-thumb {
background: var(--pst-color-background);
}

0 comments on commit 348badc

Please sign in to comment.