Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lib/dotcom_web/live/world_cup_timetable_live.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@
</div>
<% end %>
</nav>
<div :if={@selected_match}>
<div :if={@selected_match} class="w-full overflow-x-auto">
Comment thread
thecristen marked this conversation as resolved.
<% {_, _, _, _, group_times} = @selected_match %>
<h2 class="mt-0">{~t(Boarding Groups)}</h2>
<table class="mbta-table max-w-fit">
<table class="mbta-table max-w-fit ">
<thead class="bg-brand-primary-lightest-contrast">
<tr class="!border-b-[1px] !border-gray-lighter">
<tr class="!border-b-[1px] !border-gray-lighter ">
<th scope="col">
<span class="sr-only">
{~t(Group Name)}
Expand All @@ -71,7 +71,7 @@
<tr :for={{group_name, check_in_time_range, arrival_time_range} <- group_times}>
<th
scope="row"
class="flex flex-nowrap gap-sm items-center text-nowrap border-r-[1px] border-gray-lighter"
class="flex flex-nowrap gap-sm items-center border-r-[1px] border-gray-lighter "
>
{group_name} <.ticket_icon />
Comment thread
thecristen marked this conversation as resolved.
</th>
Expand Down
Loading