From 84d4214bb22ceac3119a4537428bef167b991ac0 Mon Sep 17 00:00:00 2001 From: Lucas Saintarbor Date: Mon, 6 May 2024 09:48:56 -0700 Subject: [PATCH] Add formatting for tables (#1259) * Add formatting for tables * Remove min-width: 150px for first column --- src/css/custom.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index 7172cf684c5..2ac4b3638a1 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -65,6 +65,15 @@ @apply font-sans antialiased; } + table td:nth-child(1) { + overflow-wrap: normal; + } + + td { + width: auto; + overflow-wrap: anywhere; /* For browser compatibility */ + } + .homepage a { --ifm-link-hover-color: currentColor; }