From b593337bc686a942c36a7effd61e00ace388567b Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 23 Jul 2020 16:14:46 +0200 Subject: Fix truncated text on sidebar with long packages --- plugins/base/src/main/resources/dokka/styles/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/base/src/main/resources') 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 { -- cgit