diff options
author | Marcin Aman <maman@virtuslab.com> | 2020-07-23 16:14:46 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-29 13:58:18 +0200 |
commit | b593337bc686a942c36a7effd61e00ace388567b (patch) | |
tree | 1e00f512b48df071c0e3102a038af040f59f2e75 /plugins/base/src/main/resources/dokka | |
parent | c3493ccf44f7d5bb99467ef66d84a11322a9c848 (diff) | |
download | dokka-b593337bc686a942c36a7effd61e00ace388567b.tar.gz dokka-b593337bc686a942c36a7effd61e00ace388567b.tar.bz2 dokka-b593337bc686a942c36a7effd61e00ace388567b.zip |
Fix truncated text on sidebar with long packages
Diffstat (limited to 'plugins/base/src/main/resources/dokka')
-rw-r--r-- | plugins/base/src/main/resources/dokka/styles/style.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/base/src/main/resources/dokka/styles/style.css b/plugins/base/src/main/resources/dokka/styles/style.css index e275e493..b0bf8141 100644 --- a/plugins/base/src/main/resources/dokka/styles/style.css +++ b/plugins/base/src/main/resources/dokka/styles/style.css @@ -301,17 +301,16 @@ code.paragraph { } .sideMenuPart > .overview { - height: 40px; display: flex; align-items: center; position: relative; user-select: none; /* there's a weird bug with text selection */ + padding: 8px 0; } .sideMenuPart a { - display: flex; + display: block; align-items: center; - flex: 1; height: 100%; color: #637282; overflow: hidden; @@ -454,6 +453,7 @@ h1.cover { margin-bottom: 0; padding-bottom: 32px; + display: block; } h2 { |