From cd1ec53af06b95ca80f4bd3f6df122687438a0b9 Mon Sep 17 00:00:00 2001 From: Miguel Medeiros Date: Tue, 18 May 2021 18:16:47 -0300 Subject: [PATCH] Align scriptmessage text to the left. (#529) * Align scriptmessage text to the left. * Script message box only fills the text width. --- frontend/src/styles.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss index 4dd23d137..f03ec1b79 100644 --- a/frontend/src/styles.scss +++ b/frontend/src/styles.scss @@ -585,8 +585,8 @@ th { text-overflow: ellipsis; vertical-align: middle; max-width: 50px; - width: 100%; - text-align: center; + width: auto; + text-align: left; @media (min-width: 376px) { max-width: 90px; }