Remove the vertical scrollbars everywhere
This commit is contained in:
parent
ca5b2685bb
commit
590a8e3740
2 changed files with 10 additions and 0 deletions
|
@ -92,6 +92,11 @@ const Body = styled.div`
|
|||
height: auto;
|
||||
max-height: calc(100% - ${headerHeight});
|
||||
overflow-y: scroll;
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
scrollbar-width: none;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
`
|
||||
|
|
|
@ -111,6 +111,11 @@ const Body = styled.div`
|
|||
overflow-x: hidden;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
&::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
scrollbar-width: none;
|
||||
`
|
||||
|
||||
const NumberOfConflictsIndicator = styled.div`
|
||||
|
|
Loading…
Reference in a new issue