From 04d2a4b45c235d1e2c26aef1036382312636b0be Mon Sep 17 00:00:00 2001 From: Neil C <111836326+nc1z@users.noreply.github.com> Date: Wed, 27 Mar 2024 00:44:58 +0800 Subject: [PATCH] Fix table overflow behavior on mobile (#2062) * fix: used lighter color for dark mode code element * fix: table overflow on mobile --- docusaurus/src/scss/table.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus/src/scss/table.scss b/docusaurus/src/scss/table.scss index 00195b12c0..e067b0011f 100644 --- a/docusaurus/src/scss/table.scss +++ b/docusaurus/src/scss/table.scss @@ -1,7 +1,7 @@ /** Component: Table */ table { min-width: 100%; - overflow: initial; // helps to use component inside a Table + overflow: auto; thead { --ifm-table-background: transparent;