From c009a5bda1df81f55d54e8e40b9a311eebca43b7 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 3 Feb 2021 21:08:07 +1000 Subject: [PATCH] avoid wrapping card count text on small screens --- ts/graphs/CardCounts.svelte | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ts/graphs/CardCounts.svelte b/ts/graphs/CardCounts.svelte index cd0ee488a..d63f91d99 100644 --- a/ts/graphs/CardCounts.svelte +++ b/ts/graphs/CardCounts.svelte @@ -49,6 +49,10 @@ justify-content: center; } + .counts-table td { + white-space: nowrap; + } + table { border-spacing: 1em 0; }