Add left indent for definition lists

Use padding to make the lists stand out from surrounding text.
pull/25299/head
Tim Bannister 2021-07-11 04:58:16 +01:00
parent a49c612734
commit 3fc2bcbbd0
1 changed files with 10 additions and 0 deletions

View File

@ -721,3 +721,13 @@ figure {
}
}
}
// Indent definition lists
dl {
padding-left: 1.5em;
// Add vertical space before definitions
> *:not(dt) + dt, dt:first-child {
margin-top: 1.5em;
}
}