Better handle overflow on windows so uneeded scrollbars are not shown

This commit is contained in:
Jackson Harper
2023-06-06 13:28:06 +08:00
parent f3395b5257
commit c1f0b2b4fe
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;