diff --git a/src/firmware/bootloaderInstructions/bootloaderInstructions.scss b/src/firmware/bootloaderInstructions/bootloaderInstructions.scss index 7c13eff8..c7ad83d3 100644 --- a/src/firmware/bootloaderInstructions/bootloaderInstructions.scss +++ b/src/firmware/bootloaderInstructions/bootloaderInstructions.scss @@ -21,10 +21,9 @@ ol.firstList { ol.firstList li, ol.continuedList li { counter-increment: listCounter; -} -// Use counter value to set marker, no matter which list. -ol.firstList li::marker, -ol.continuedList li::marker { - content: counter(listCounter, decimal) '. '; + // Use counter value to set marker. + &::marker { + content: counter(listCounter, decimal) '. '; + } }