format _mark.scss

This commit is contained in:
qilinz 2023-07-15 19:54:48 +02:00 committed by Henri Dickson
parent 1ce267f006
commit 05b6e07a2b

View file

@ -23,23 +23,27 @@ ul.log-list {
margin: 0;
padding-bottom: 0.5em;
padding-left: 0.8em;
}
// The actual line being placed before each list item, tweak width and color as appropriate
li:before {
background-color: var(--pico-color);
width: 2px;
content: '';
position: absolute;
top: 0;
bottom: 0;
left: -0.75em;
}
}
// The actual line being placed before each list item, tweak width and color as appropriate
li:before {
background-color: var(--pico-color);
width: 2px;
content: '';
position: absolute;
top: 0;
bottom: 0;
left: -0.75em;
}
// Start the line further down on the first list item
li:first-child:before { top: 15px; }
// Start the line further down on the first list item
li:first-child:before {
top: 15px;
}
// Stop the line short on the final list item
li:last-child:before { height: 15px; }
// Stop the line short on the final list item
li:last-child:before {
height: 15px;
}
}