fixing ul and ol colors on conseils (and pages)

This commit is contained in:
Antoine M 2024-06-24 17:00:05 +02:00
parent ed20681f85
commit ff49b9fdce

View File

@ -85,13 +85,8 @@
filter: brightness(0) invert(1) opacity(90%); filter: brightness(0) invert(1) opacity(90%);
} }
} }
ol li::marker {
@apply !text-white;
}
ul li:before {
@apply bg-white;
}
} }
&--warning { &--warning {
@apply !bg-transparent !relative !text-secondary; @apply !bg-transparent !relative !text-secondary;
@ -144,3 +139,12 @@
@apply bg-gray; @apply bg-gray;
} }
} }
.page {
.homegrade-blocks-highlight--classic ul li:before {
@apply bg-white;
}
.homegrade-blocks-highlight--classic ol li::marker {
@apply !text-white;
}
}