From e606887319ca6619bc93ed4c39e22cfc3b5676db Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Thu, 15 Dec 2022 20:16:31 +0100 Subject: [PATCH] firmware/bootloaderInstructions: Simplify scss. --- .../bootloaderInstructions/bootloaderInstructions.scss | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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) '. '; + } }