Dropped .badge-pill use the .rounded-pill utility instead.
Breaking change on Boostrap 5 https://getbootstrap.com/docs/5.0/migration/#badges
This commit is contained in:
parent
c7e0501828
commit
300edac5a8
|
@ -361,7 +361,7 @@
|
||||||
<br />
|
<br />
|
||||||
<h6>
|
<h6>
|
||||||
{% for lot in dev.lots %}
|
{% for lot in dev.lots %}
|
||||||
<span class="badge badge-pill bg-dark">{{ lot.name }}</span>
|
<span class="badge rounded-pill bg-dark">{{ lot.name }}</span>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</h6>
|
</h6>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Reference in New Issue