Better scroll handling for the library containers

This commit is contained in:
Jackson Harper
2024-06-11 13:36:42 +08:00
parent 950037af7e
commit dad1fa049a
3 changed files with 2 additions and 7 deletions

View File

@ -11,9 +11,7 @@ export default function Library(): JSX.Element {
path: '/library',
}}
>
<Box css={{ width: '100%', height: '100%', overflowY: 'auto' }}>
<LibraryContainer />
</Box>
<LibraryContainer />
</NavigationLayout>
)
}

View File

@ -13,9 +13,7 @@ export default function Subscriptions(): JSX.Element {
path: '/subscriptions',
}}
>
<Box css={{ width: '100%', height: '100%', overflowY: 'auto' }}>
<LibraryContainer />
</Box>
<LibraryContainer />
</NavigationLayout>
)
}

View File

@ -6,7 +6,6 @@ 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;