fix(css) fix cut off borders and barely visible scrollbars (#13576)

This commit is contained in:
Avram Tudor
2023-07-18 16:02:02 +03:00
committed by GitHub
parent 36a5282823
commit 10eadbb7e6
2 changed files with 3 additions and 2 deletions

View File

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

View File

@@ -88,7 +88,8 @@ const styles = (theme: Theme) => {
return {
container: {
display: 'flex',
flexDirection: 'column' as const
flexDirection: 'column' as const,
padding: '0 2px'
},
divider: {