mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Better handle overflow on windows so uneeded scrollbars are not shown
This commit is contained in:
parent
f3395b5257
commit
c1f0b2b4fe
2 changed files with 2 additions and 1 deletions
|
|
@ -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 &&
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue