Skip to content

Commit

Permalink
Reimplement .dl-horizontal, dropped in Bootstrap 3 and apparently sti…
Browse files Browse the repository at this point in the history
…ll used in our templates in some places
  • Loading branch information
FreneticScribbler committed Apr 6, 2024
1 parent 409125c commit 17fa447
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pipeline/source_assets/scss/screen.scss
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,12 @@ html.embedded {
.bootstrap-select, button.btn.dropdown-toggle.bs-placeholder.btn-light {
padding-right: 1rem !important;
}
// New implementation of class dropped in Bootstrap 3
.dl-horizontal {
display: grid;
grid-template-columns: auto 1fr;
gap: 0.7rem 0;
}
.dl-horizontal > dd, .dl-horizontal .markdown > p {
margin-bottom: 0 !important;
}

0 comments on commit 17fa447

Please sign in to comment.