Remove the vertical scrollbars everywhere

This commit is contained in:
Aria Minaei 2022-02-04 20:23:49 +01:00
parent ca5b2685bb
commit 590a8e3740
2 changed files with 10 additions and 0 deletions

View file

@ -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;
`

View file

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