From c3ce7d9f3a46857f885acdcb6d39f03d763b08de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Wed, 27 Jan 2021 16:32:57 +0100 Subject: [PATCH] Left-align table headers This lets the layout look less ragged. --- snikket_web/scss/app.scss | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/snikket_web/scss/app.scss b/snikket_web/scss/app.scss index b2948d6..a47763c 100644 --- a/snikket_web/scss/app.scss +++ b/snikket_web/scss/app.scss @@ -811,10 +811,14 @@ div.welcome-cards { table { border-collapse: collapse; width: 100%; +} - td, th { - padding: $w-s1; - } +td, th { + padding: $w-s1; +} + +th { + text-align: left; } div.elevated {