Fix a styling issue with docs titles (#1962)

This commit is contained in:
Maciej Mikołajek 2021-08-19 09:46:47 +02:00 committed by GitHub
parent 385464d0f0
commit 32261a180a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,9 +43,11 @@ final case class Doc(
def htmlWithTitle(title: String): Doc.HTML = {
if (title != "") {
Seq(
HTML.div(HTML.`class` := "doc-title-container")(
HTML.div(HTML.`class` := "doc-title-name")(title),
tags.html
HTML.div(
HTML.div(HTML.`class` := "doc-title-container")(
HTML.div(HTML.`class` := "doc-title-name")(title),
tags.html
)
)(synopsis.html)(body.html)
)
} else {