Merge pull request #2312 from omnivore-app/fix/windows-overflow-scrollbars

Better handle overflow on windows so uneeded scrollbars are not shown
This commit is contained in:
Jackson Harper
2023-06-06 14:06:02 +08:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@ -393,9 +393,9 @@ export function SetLabelsControl(props: SetLabelsControlProps): JSX.Element {
alignment="start"
css={{
flexGrow: '1',
overflow: 'scroll',
width: '100%',
height: '294px',
overflowY: 'scroll',
}}
>
{filteredLabels &&

View File

@ -2,6 +2,7 @@ html,
body {
padding: 0;
margin: 0;
overflow: auto;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
-webkit-font-smoothing: antialiased;