diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-01-31 13:34:32 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-01-31 13:42:35 +0100 |
| commit | 07f5ca7e5383a6cc2218da4d68897b60b880c475 (patch) | |
| tree | e331c7f988bde451c51ebe57692e3d60e136cadd | |
| parent | 0a93cb36be52c1f7fd43e78ab8689b2ee45c695f (diff) | |
| download | rust-07f5ca7e5383a6cc2218da4d68897b60b880c475.tar.gz rust-07f5ca7e5383a6cc2218da4d68897b60b880c475.zip | |
Prevent search section to go over search input
| -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 8dad26dced9..a7dd09ae468 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -1424,7 +1424,7 @@ h4 > .notable-traits { margin-left: 0px; } - #main { + #main, #search { margin-top: 45px; padding: 0; } |
