27 lines
500 B
CSS
27 lines
500 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) ' • ';
|
|
}
|
|
}
|
|
|
|
.align-extra-wide {
|
|
max-width: var(--wp--style--global--wide-size, 1280px);
|
|
}
|