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
This commit is contained in:
Kapil jangid 2024-12-12 12:32:54 +05:30 committed by GitHub
parent e8189a6af1
commit 3f961cf67e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 {