From dc4bf580a07a40256cd61e8e0895960059fe5609 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 5 May 2023 12:04:50 +0200 Subject: [PATCH] Suppress margins for the first/last child of a table cell --- wcfsetup/install/files/style/layout/global.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) 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, -- 2.20.1