Updating files after updating new versions of packages

This commit is contained in:
2026-03-31 14:26:29 +02:00
parent a846754440
commit 06e51f2278
2 changed files with 225 additions and 214 deletions

View File

@@ -1,18 +1,18 @@
<div class="avatar avatar-placeholder font-semibold {% if button %}btn btn-circle btn-ghost{% endif %}" {% if button %}tabindex="0" role="button"{% endif %}>
{% if width == "xl" %}
<div class="w-24 rounded-lg" style="background-color: {{ background }}; color: {{ foreground }};">
<div class="w-24 rounded-full" style="background-color: {{ background }}; color: {{ foreground }};">
<span class="text-4xl">{{ name }}</span>
</div>
{% elif width == "lg" %}
<div class="w-16 rounded-lg" style="background-color: {{ background }}; color: {{ foreground }};">
<div class="w-16 rounded-full" style="background-color: {{ background }}; color: {{ foreground }};">
<span class="text-2xl">{{ name }}</span>
</div>
{% elif width == "sm" %}
<div class="w-8 rounded-lg" style="background-color: {{ background }}; color: {{ foreground }};">
<div class="w-8 rounded-full" style="background-color: {{ background }}; color: {{ foreground }};">
<span class="text-sm">{{ name }}</span>
</div>
{% else %}
<div class="rounded-lg {% if button %}w-10{% else %}w-12{% endif %}" style="background-color: {{ background }}; color: {{ foreground }};">
<div class="rounded-full {% if button %}w-10{% else %}w-12{% endif %}" style="background-color: {{ background }}; color: {{ foreground }};">
<span class="{% if not button %}text-xl{% endif %}">{{ name }}</span>
</div>
{% endif %}