23 lines
411 B
CSS
23 lines
411 B
CSS
a {
|
|
text-decoration: none;
|
|
@apply text-primary;
|
|
}
|
|
|
|
main {
|
|
/* Causing issues with the article sidebar index sticky positioning */
|
|
/* overflow-x: hidden; */
|
|
|
|
:last-child {
|
|
margin-bottom: 0px !important;
|
|
}
|
|
}
|
|
|
|
ol li {
|
|
@apply list-decimal;
|
|
list-style-position: inside;
|
|
&::marker {
|
|
@apply text-carhop-green-700 font-bold;
|
|
content: counter(list-item) ' • ';
|
|
}
|
|
}
|