fix: shoo tailwind

This commit is contained in:
Cory Dransfeldt 2024-01-02 17:13:38 -08:00
parent 5f01b72b51
commit 64de6d3896
No known key found for this signature in database

View file

@ -1,11 +1,11 @@
{% if percentage %}
{% capture css %}
{% render "../../../assets/styles/widgets/media-grid.css" %}
{% render "../../../assets/styles/widgets/progress-bar.css" %}
{% endcapture %}
<style>
{{ css | cssmin }}
</style>
<div class="progress-bar__wrapper">
<div style="width:{{ percentage }}" class="progress-bar shadow-none flex flex-col whitespace-nowrap justify-center bg-blue-600 dark:bg-blue-400"></div>
<div style="width:{{ percentage }}" class="progress-bar"></div>
</div>
{% endif %}