Rollup merge of #91225 - GuillaumeGomez:source-page-scrollbar, r=jsha
Fix invalid scrollbar display on source code page Fixes bug introduced in #90983:   To fix it, I simply unset the `overflow-y` on the source code page so it's not displayed anymore. r? ``@jsha``
This commit is contained in:
commit
a9710deebc
1 changed files with 4 additions and 0 deletions
|
|
@ -305,6 +305,10 @@ nav.sub {
|
|||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.rustdoc.source .sidebar {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/* Improve the scrollbar display on firefox */
|
||||
* {
|
||||
scrollbar-width: initial;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue