From 3f961cf67e7f9441c9a165419abe50d682e3e2c7 Mon Sep 17 00:00:00 2001 From: Kapil jangid <103230903+CuriousCoder00@users.noreply.github.com> Date: Thu, 12 Dec 2024 12:32:54 +0530 Subject: [PATCH] Fix/users scroll UI (#10628) * chore: Update workspace settings table styling * chore: Update workspace settings table styling for users ui scrollbar to be visible only on hover * chore: Remove margin-top in table row styling to remove the gap in visible text in the space above the table headers --- frontend/src/_styles/theme.scss | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/frontend/src/_styles/theme.scss b/frontend/src/_styles/theme.scss index 7c73836ccd..f058e8c974 100644 --- a/frontend/src/_styles/theme.scss +++ b/frontend/src/_styles/theme.scss @@ -8940,7 +8940,6 @@ tbody { height: 40px; display: flex; align-items: center; - margin-top: 6px; } tr>th { @@ -9002,6 +9001,25 @@ tbody { .workspace-settings-table-wrap { max-width: 880px; margin: 0 auto; + .tj-user-table-wrapper{ + padding-right: 4px; + } + &:hover{ + .tj-user-table-wrapper{ + padding-right: 0px; + } + ::-webkit-scrollbar{ + display: block; + width: 4px; + } + ::-webkit-scrollbar-track{ + background: var(--base); + } + ::-webkit-scrollbar-thumb{ + background: var(--slate7); + border-radius: 6px; + } + } } .workspace-settings-filters {