Set width based on mode

This commit is contained in:
Jackson Harper 2023-03-08 11:42:18 +08:00
parent 249abc71c3
commit 25a721d183

View file

@ -661,7 +661,12 @@ function HomeFeedGrid(props: HomeFeedContentProps): JSX.Element {
const [showFilterMenu, setShowFilterMenu] = useState(false)
return (
<VStack css={{ height: '100%' }}>
<VStack
css={{
height: '100%',
width: props.mode == 'highlights' ? '100%' : 'unset',
}}
>
<LibraryHeader
layout={layout}
updateLayout={updateLayout}