From f34fb0e4bd0c9d7d94e10cb298d2b9fd2ded01b7 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Fri, 2 Aug 2024 13:15:47 +0200 Subject: [PATCH] Align Table values to top --- client/src/global-styles/components.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/src/global-styles/components.css b/client/src/global-styles/components.css index 95e1746..5b2afb3 100644 --- a/client/src/global-styles/components.css +++ b/client/src/global-styles/components.css @@ -68,7 +68,11 @@ th, td { padding: 0.5rem; border: 0.125rem solid var(--cl-bg-el); } -th > *{ +td { + vertical-align: top; +} + +th>* { justify-content: center; align-items: center; }