carhop__carhop-theme__DEV/resources/css/blocks/wp-block-list.css
Antoine M 80b05c7d8f
All checks were successful
continuous-integration/drone/push Build is passing
STYLE handling wp-list correctly on front-end
2025-10-28 16:55:40 +01:00

16 lines
295 B
CSS

.wp-block-list {
@apply list-disc;
list-style-position: inside;
li {
@apply list-none relative pl-6;
}
li::before {
@apply text-carhop-green-700 font-bold absolute top-0 left-0 pt-0;
content: '•';
@apply font-bold text-2xl;
line-height: 1;
}
}