Skip to content

Commit

Permalink
fix(css) fix cut off borders and barely visible scrollbars (jitsi#13576)
Browse files Browse the repository at this point in the history
  • Loading branch information
quitrk authored Jul 18, 2023
1 parent 36a5282 commit 10eadbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion css/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ form {
}

::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, .5);
background: #3D3D3D;
border-radius: 4px;
}

Expand Down
3 changes: 2 additions & 1 deletion react/features/settings/components/web/MoreTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ const styles = (theme: Theme) => {
return {
container: {
display: 'flex',
flexDirection: 'column' as const
flexDirection: 'column' as const,
padding: '0 2px'
},

divider: {
Expand Down

0 comments on commit 10eadbb

Please sign in to comment.