Skip to content

Commit

Permalink
tournament: Allow overflow in schedule table
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe2k committed Dec 6, 2023
1 parent f8f47f0 commit add796e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/TournamentSchedule.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const TournamentSchedule = () => {
when={sameDay(day, new Date(Date.parse(day2 + " GMT")))}
>
<div class="relative mb-8 overflow-x-auto">
<table class="w-full table-fixed text-left text-sm text-gray-500 dark:text-gray-400">
<table class="w-full text-left text-sm text-gray-500 dark:text-gray-400">
<thead class="bg-gray-50 text-xs uppercase text-gray-700 dark:bg-gray-700 dark:text-gray-400">
<tr>
<th scope="col" class="px-2 py-3 text-center">
Expand Down Expand Up @@ -221,7 +221,7 @@ const TournamentSchedule = () => {
</th>
<For each={Object.keys(fieldMap[day2]).sort()}>
{field => (
<td class="px-2 py-4 text-xs">
<td class="whitespace-nowrap px-2 py-4 text-xs">
<Show
when={
matchDayTimeFieldMap[day2][time][
Expand Down

0 comments on commit add796e

Please sign in to comment.