From 20cc5a29b3cbe8161116b4c8bee1ff54a8e19c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 10 Jul 2019 16:51:58 +0200 Subject: [PATCH] style: left align table cells and use semi-bold for headers (#34245) --- gadjo/static/css/gadjo.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gadjo/static/css/gadjo.scss b/gadjo/static/css/gadjo.scss index 6c30225..d892544 100644 --- a/gadjo/static/css/gadjo.scss +++ b/gadjo/static/css/gadjo.scss @@ -461,14 +461,15 @@ table.main { } table.main th { - font-weight: normal; + font-weight: 600; padding: 1em 1ex; border-bottom: 1px solid #f3f3f3; background: #f7f7f7; + text-align: left; } table.main td { - text-align: center; + text-align: left; padding: 1em 1ex; border-bottom: 1px solid #f3f3f3; @include vendor-prefix('transition', 'background ease 0.2s');