From 97a909791cd892ea432b2d8f169ccb14ad413b40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 14 Aug 2023 16:13:53 +0200 Subject: [PATCH] Website: make table cells v-align to top This makes tables a little easier on the eyes. --- web/project-website/static/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/project-website/static/custom.css b/web/project-website/static/custom.css index 14bb0bd4..262dd912 100644 --- a/web/project-website/static/custom.css +++ b/web/project-website/static/custom.css @@ -190,3 +190,7 @@ article p { line-height: 28px; margin-top: 0; } + +table tbody td { + vertical-align: top; +}