From 95fc3a207c8fdb605501369fadbd7487ca5489e2 Mon Sep 17 00:00:00 2001 From: evazion Date: Wed, 29 Sep 2021 06:33:46 -0500 Subject: [PATCH] /status: fix formatting of table cells. Make the table cells on the /status page centered instead of top-aligned, and make the labels fit on one line. --- app/javascript/src/styles/common/tables.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/javascript/src/styles/common/tables.scss b/app/javascript/src/styles/common/tables.scss index cb2f6030f..161926358 100644 --- a/app/javascript/src/styles/common/tables.scss +++ b/app/javascript/src/styles/common/tables.scss @@ -56,11 +56,12 @@ table.search, table.aligned-vertical { th { text-align: right; padding-right: 1em; - vertical-align: top; + vertical-align: middle; + white-space: nowrap; } td { - vertical-align: top; + vertical-align: middle; } }