1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/** * Used for any key value pair * Markup <dl class="list-pair"> <dt>Term</dt> <dd>Definition associated with the term</dd> </dl> */ .list-pair { margin-bottom: 0; dt { @include label; } dd { @include fontCourierBold; margin-bottom: 0; } + .list-pair { margin-top: 1.5rem; } }