Reduce size of sparkline legend

This commit is contained in:
Peter Stockings
2023-12-09 12:54:55 +11:00
parent cc44591eea
commit e6509f9bfc

View File

@@ -59,8 +59,8 @@
<div class="flex justify-center pt-2"> <div class="flex justify-center pt-2">
{% for plot in plots %} {% for plot in plots %}
<div class="flex items-center px-2"> <div class="flex items-center px-2">
<div class="w-4 h-4 mr-1" style="background-color: {{ plot.color }};"></div> <div class="w-3 h-3 mr-1" style="background-color: {{ plot.color }};"></div>
<div>{{ plot.label }}</div> <div class="text-xs">{{ plot.label }}</div>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>