From 35167bc14e10aee6c6548a047db3d0968ba24c01 Mon Sep 17 00:00:00 2001 From: rushenn Date: Wed, 9 Apr 2025 13:08:16 +0530 Subject: [PATCH] Fix table white-space behavior --- source/_static/scss/includes/_reset.scss | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/source/_static/scss/includes/_reset.scss b/source/_static/scss/includes/_reset.scss index d6858799..14a1ba13 100644 --- a/source/_static/scss/includes/_reset.scss +++ b/source/_static/scss/includes/_reset.scss @@ -289,15 +289,19 @@ table.docutils { border-bottom-width: 0; } } + } - td, th { - &:first-child { - border-left-width: 0; - } + td, th { + &:first-child { + border-left-width: 0; + } - &:last-child { - border-right-width: 0; - } + &:last-child { + border-right-width: 0; + } + + * { + white-space: normal; } } }