From: Alexander Ebert Date: Fri, 5 May 2023 10:04:50 +0000 (+0200) Subject: Suppress margins for the first/last child of a table cell X-Git-Tag: 6.0.0_Alpha_1~136^2~9 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=dc4bf580a07a40256cd61e8e0895960059fe5609;p=GitHub%2FWoltLab%2FWCF.git Suppress margins for the first/last child of a table cell --- diff --git a/wcfsetup/install/files/style/layout/global.scss b/wcfsetup/install/files/style/layout/global.scss index 2eb9618a0a..088e9f0438 100644 --- a/wcfsetup/install/files/style/layout/global.scss +++ b/wcfsetup/install/files/style/layout/global.scss @@ -166,6 +166,16 @@ ol.nativeList { ol { list-style-type: decimal; } + + td { + > :first-child { + margin-top: 0 !important; + } + + > :last-child { + margin-bottom: 0 !important; + } + } } .containerContent,