mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-13 09:07:29 +02:00
fix: make scrollbar visible in inner page navigation (#1349)
* fix: make scrollbar visible in inner page navigation * fix: make scrollbar visible in inner page navigation * undo * fix: make scrollbar visible in inner page navigation * fix: make scrollbar visible in inner page navigation
This commit is contained in:
parent
d583c6c7da
commit
b6aa6dac89
1 changed files with 16 additions and 1 deletions
|
@ -1973,10 +1973,25 @@ input::placeholder {
|
||||||
/* Inner page navigation */
|
/* Inner page navigation */
|
||||||
.onPageNav {
|
.onPageNav {
|
||||||
display: none;
|
display: none;
|
||||||
|
margin-bottom: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.onPageNav::-webkit-scrollbar {
|
.onPageNav::-webkit-scrollbar {
|
||||||
display: none;
|
width: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.onPageNav::-webkit-scrollbar-track {
|
||||||
|
background: #f1f1f1;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.onPageNav::-webkit-scrollbar-thumb {
|
||||||
|
background: #888;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.onPageNav::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
.onPageNav a {
|
.onPageNav a {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue