mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Top menu visible when filter open
This commit is contained in:
parent
5bbd90de37
commit
0735b10d1b
1 changed files with 3 additions and 3 deletions
|
|
@ -41,7 +41,7 @@ export function LibraryFilterMenu(props: LibraryFilterMenuProps): JSX.Element {
|
|||
display: 'none',
|
||||
},
|
||||
'@mdDown': {
|
||||
top: props.showFilterMenu ? '0px' : '100%',
|
||||
top: props.showFilterMenu ? '48px' : '100%',
|
||||
width: '100%',
|
||||
zIndex: 6, // Above the header
|
||||
transform: 'translateY(0)',
|
||||
|
|
@ -49,7 +49,7 @@ export function LibraryFilterMenu(props: LibraryFilterMenuProps): JSX.Element {
|
|||
},
|
||||
}}
|
||||
>
|
||||
<HStack
|
||||
{/* <HStack
|
||||
css={{
|
||||
width: '100%',
|
||||
height: '30px',
|
||||
|
|
@ -63,7 +63,7 @@ export function LibraryFilterMenu(props: LibraryFilterMenuProps): JSX.Element {
|
|||
distribution="start"
|
||||
>
|
||||
<CloseButton close={() => props.setShowFilterMenu(false)} />
|
||||
</HStack>
|
||||
</HStack> */}
|
||||
<SavedSearches {...props} />
|
||||
<Subscriptions {...props} />
|
||||
<Labels {...props} />
|
||||
|
|
|
|||
Loading…
Reference in a new issue