firmware/bootloaderInstructions: Simplify scss.

This commit is contained in:
Laurens Valk
2022-12-15 14:59:36 -06:00
committed by David Lechner
parent c84d862a57
commit e606887319
@@ -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) '. ';
}
}