From bd965c93f4e13aa7b4fd4348643ec4ca1b6b21f3 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Mon, 8 Aug 2022 09:38:07 +0300 Subject: [PATCH] Using one-line layout for the s Signed-off-by: Alex Andreev --- .../components/list/table-theme.module.scss | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/renderer/components/list/table-theme.module.scss b/src/renderer/components/list/table-theme.module.scss index e6acc554cb..dcc2199569 100644 --- a/src/renderer/components/list/table-theme.module.scss +++ b/src/renderer/components/list/table-theme.module.scss @@ -1,14 +1,21 @@ .tableTheme { + border: 1px solid lightgray; + height: calc(100% - 59px); + overflow: auto; + table { border-spacing: 0; border-top: thin solid var(--hrColor); + table-layout: fixed; + width: 100%; } thead { border-bottom: thin solid var(--hrColor); color: var(--textColorAccent); - padding-top: 7px; height: 33px; + position: sticky; + top: 0; } thead tr { @@ -37,9 +44,8 @@ td { padding: 0 var(--padding); + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } - - .actions { - @apply justify-end; - } }