A few style changes
Build and Publish Docker Container / build (push) Successful in 6m0s

This commit is contained in:
2024-02-05 09:53:47 +00:00
parent 8f797fe919
commit 3f4d630ce2
3 changed files with 19 additions and 17 deletions
+3 -1
View File
@@ -4,12 +4,14 @@
'bg-green-100': lecture.attended?,
}) %>
<div id="<%= dom_id(lecture) %>" class="<%= status_classes %> px-6 py-4 flex justify-between items-center grid grid-cols-5 gap-2">
<div id="<%= dom_id(lecture) %>" class="<%= status_classes %> px-6 py-4 justify-between items-center grid grid-flow-col gap-2">
<div class="whitespace-nowrap text-sm font-medium text-gray-900">
<%= lecture.title %>
<% if lecture.online %>
<i class="fa fa-solid fa-globe text-gray-500"></i>
<% else %>
<span class="inline-block w-4"></span>
<% end %>
</div>