From 20d0a36a2bdd54f5f3922f8dc7d994fce490966f Mon Sep 17 00:00:00 2001 From: Katja Lutz Date: Mon, 27 Jun 2022 11:56:11 +0200 Subject: [PATCH] feat: add word wrapping to non responsive tables --- src/index.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.css b/src/index.css index a26c351..f5026fd 100644 --- a/src/index.css +++ b/src/index.css @@ -45,6 +45,11 @@ } @layer base { + .table:not(.table-responsive) td { + word-break: break-word; + @apply whitespace-normal; + } + td { @apply bg-clip-padding; }