diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-12-14 14:43:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-14 14:43:45 +0100 |
| commit | 63e86a7f7229a994ef7bcf2d588979d3fbc2d1ce (patch) | |
| tree | a41d98e80f3812aa60dddd7baaa325c7031f74fc /src/librustdoc/html/static/rustdoc.css | |
| parent | 5d8b2a5bf1ab1a762a19964d7a6e54b4c7b65285 (diff) | |
| parent | 9c36491538476dd3ff5ec834944aacdaceb12f30 (diff) | |
| download | rust-63e86a7f7229a994ef7bcf2d588979d3fbc2d1ce.tar.gz rust-63e86a7f7229a994ef7bcf2d588979d3fbc2d1ce.zip | |
Rollup merge of #79936 - GuillaumeGomez:mobile-fix-item-name, r=Nemo157,jyn514
Fix item name display on mobile Fixes https://github.com/rust-lang/docs.rs/issues/1200   cc `@jyn514` r? `@Nemo157`
Diffstat (limited to 'src/librustdoc/html/static/rustdoc.css')
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index 61905b8eca8..42e4fa05152 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -1570,9 +1570,13 @@ h4 > .notable-traits { height: 73px; } + #main { + margin-top: 100px; + } + #main > table:not(.table-display) td { word-break: break-word; - min-width: 10%; + width: 50%; } .search-container > div { |
