Hello everyone,
I’m quite happy with the new blocks editor. One question is remaining:
I want to change the styling of list blocks. This is my list.php:
<ul class="list-unstyled mb-7">
<li class="d-flex">
<!-- Check -->
<div class="badge badge-rounded-circle badge-primary-soft mt-1 mr-4">
<i class="fe fe-chevron-right"></i>
</div>
<!-- Text -->
<p>
<?= $block->text() ?>
</p>
</li>
</ul>
The result is (logically):

How can I get a while-loop for every single list element and how can I remove the li-bullets before the Text?
Big thanks!