My goal is to line up items on the same row, as shown in the screenshot. I need the opening hours to align consistently in the list. The data is retrieved from a database and displayed using Vue.
This is how I currently display the opening hours and days. How can I ensure that the hours align properly in the list to avoid the misalignment seen in the image below?
<ul class="display-items"
v-for="item in opendays_hours">
<li class="display-item" v-if="item">
{{item.day}} {{item.times}}
</li>
</ul>