From 454b1c243e4cb7d9b2fdfed6fb8252c6321e3765 Mon Sep 17 00:00:00 2001 From: Electron - Mark Firth Date: Tue, 26 Jun 2018 16:16:50 +1000 Subject: [PATCH] Tourniquets Text Over 400px to Fix Table Length Issue Fixes table length issue. --- src/renderer/scss/component/_button.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/renderer/scss/component/_button.scss b/src/renderer/scss/component/_button.scss index afa91989c..93a326e6f 100644 --- a/src/renderer/scss/component/_button.scss +++ b/src/renderer/scss/component/_button.scss @@ -66,6 +66,11 @@ button:disabled { min-width: 0; box-shadow: none; text-align: left; +/*Tourniquets text over 400px*/ + max-width: 400px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .btn.btn--external-link {