Skip to content

Commit

Permalink
Remove margin-bottom from platform-hinted
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Dec 22, 2021
1 parent dea4b59 commit c156c4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion plugins/base/src/main/kotlin/renderers/html/HtmlRenderer.kt
Expand Up @@ -450,7 +450,9 @@ open class HtmlRenderer(
it.filter { sourceSetRestriction == null || it.sourceSets.any { s -> s in sourceSetRestriction } }
.forEach {
span("inline-flex") {
it.build(this, pageContext, sourceSetRestriction)
div {
it.build(this, pageContext, sourceSetRestriction)
}
if (it is ContentLink && !anchorDestination.isNullOrBlank()) buildAnchorCopyButton(
anchorDestination
)
Expand Down
4 changes: 2 additions & 2 deletions plugins/base/src/main/resources/dokka/styles/style.css
Expand Up @@ -747,7 +747,6 @@ td.content {
}

.main-subrow .anchor-icon {
padding: 0 8px;
opacity: 0;
transition: 0.2s 0.5s;
}
Expand All @@ -766,8 +765,9 @@ td.content {

.main-subrow .anchor-wrapper {
position: relative;
width: 16px;
width: 24px;
height: 16px;
margin-left: 3px;
}

.inline-flex {
Expand Down

0 comments on commit c156c4c

Please sign in to comment.