feat: label color description for timeline

This commit is contained in:
Björn Fromme
2025-03-25 10:51:29 +01:00
parent bfa5fa7866
commit 207eda6df1
2 changed files with 13 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
.scroll-container { .scroll-container {
@apply overflow-scroll; @apply overflow-scroll;
max-height: calc(100vh - 240px); max-height: calc(100vh - 320px);
} }
@@ -59,7 +59,7 @@
{% endif %} {% endif %}
</div> </div>
</div> </div>
<div class="scroll-container border border-gray-300 mb-16"> <div class="scroll-container border border-gray-300 mb-4">
<table> <table>
<tr class="[&_th]:sticky [&_th]:top-0 [&_th]:z-10"> <tr class="[&_th]:sticky [&_th]:top-0 [&_th]:z-10">
<th></th> <th></th>
@@ -92,4 +92,15 @@
{% endfor %} {% endfor %}
</table> </table>
</div> </div>
<div class="flex space-x-2">
<div class="flex items-center space-x-2 bg-orange-300 px-4 py-1">
<span>Bedarf</span>
</div>
<div class="flex items-center space-x-2 bg-yellow-300 px-4 py-1">
<span>in Bewerbung</span>
</div>
<div class="flex items-center space-x-2 bg-green-300 px-4 py-1">
<span>besetzt</span>
</div>
</div>
{% endblock %} {% endblock %}