Skip to content

Commit

Permalink
Fix box-content padding in non-slides docs
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgio committed Aug 31, 2024
1 parent 677b798 commit 29638c0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/src/main/resources/render/theme/global.css
Original file line number Diff line number Diff line change
@@ -232,8 +232,12 @@ code.focus-lines .hljs-ln-line:not(.focused),
padding: 12px;
}

.box > .box-content p {
margin: 8px 0;
.box > .box-content > *:first-child {
margin-top: 8px;
}

.box > .box-content > *:last-child {
margin-bottom: 8px;
}

.box.error-box {

0 comments on commit 29638c0

Please sign in to comment.