mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 17:08:34 +00:00
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:
parent
e8189a6af1
commit
3f961cf67e
1 changed files with 19 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue