From 82bb20f63df0b53be176c6a01689382b3afd87ad Mon Sep 17 00:00:00 2001 From: Electron - Mark Firth Date: Wed, 27 Jun 2018 21:22:14 +1000 Subject: [PATCH] 2nd Column Lost it's Colour When the new code was added the `var(--color-help)` was lost and it defaulted back to **brash white**. This adds the `var(--color-help)` back in. --- src/renderer/scss/component/_table.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/scss/component/_table.scss b/src/renderer/scss/component/_table.scss index b7832afab..fbd8c2fed 100644 --- a/src/renderer/scss/component/_table.scss +++ b/src/renderer/scss/component/_table.scss @@ -86,6 +86,7 @@ table.table--help { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; + color: var(--color-help); } }