From 68f551fc0c7b3c1d7778d31bbc39de264b5b6195 Mon Sep 17 00:00:00 2001 From: zl8244 <90871445+zl8244@users.noreply.github.com> Date: Sat, 27 Apr 2024 14:32:21 -0400 Subject: [PATCH] Rudimentary fix for the table view on small screen (#114) --- next/app/globals.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next/app/globals.scss b/next/app/globals.scss index 57c6a946..d627fa59 100644 --- a/next/app/globals.scss +++ b/next/app/globals.scss @@ -183,14 +183,17 @@ @apply whitespace-nowrap; @apply divide-y divide-base-content; @apply my-4; + @apply table-fixed; } th { @apply px-6 py-3 text-left text-xs font-medium uppercase tracking-wider; + @apply overflow-auto; } td { @apply px-6 py-4 whitespace-nowrap; + @apply overflow-auto; } tr {