From fccf60b7cf81c1cb990607eb0844adcecf197f38 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Tue, 25 Apr 2023 17:31:28 -0500 Subject: [PATCH] fix: text in final table column causing overflow --- src/app/components/Section.module.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/components/Section.module.css b/src/app/components/Section.module.css index e4d5969..b267fa9 100644 --- a/src/app/components/Section.module.css +++ b/src/app/components/Section.module.css @@ -80,6 +80,10 @@ border-bottom: 1px solid #0b3766; } +.container table>tbody>tr>td:last-child { + word-break: break-word; +} + .container table>thead>tr>th { white-space: nowrap; }