16 lines
303 B
CSS
16 lines
303 B
CSS
.wp-block-list {
|
|
@apply !list-none;
|
|
|
|
li {
|
|
@apply list-none relative pl-6;
|
|
list-style-type: none !important;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|