diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-03-17 08:48:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-17 08:48:59 -0400 |
| commit | 3ebce67ca34a595ab9011fe683fdd38c5d9c5fff (patch) | |
| tree | 4c705c30efd8c5a2c00a8df23cad8bb1ffef2fcc | |
| parent | f9236bdfcc077a218f34afa82ab40172c63baff4 (diff) | |
| parent | 8b9b3b6d8b1b683dbc4bd2c2d5000cb87eb8b1a2 (diff) | |
| download | rust-3ebce67ca34a595ab9011fe683fdd38c5d9c5fff.tar.gz rust-3ebce67ca34a595ab9011fe683fdd38c5d9c5fff.zip | |
Rollup merge of #40497 - wesleywiser:fix_sidebar, r=GuillaumeGomez
Fix sidebar not extending to the bottom of the page Fixes #40459
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index 4047f6045bc..3df120eece9 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -167,7 +167,7 @@ nav.sub { position: absolute; left: 0; top: 0; - min-height: 100vh; + min-height: 100%; } .sidebar .current { |
