mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Always display article actions when in PDF
This commit is contained in:
parent
54067f6062
commit
289fb2b759
1 changed files with 12 additions and 10 deletions
|
|
@ -61,16 +61,18 @@ export function ReaderHeader(props: ReaderHeaderProps): JSX.Element {
|
|||
>
|
||||
{props.children}
|
||||
</SpanBox>
|
||||
<SpanBox
|
||||
css={{
|
||||
width: '100%',
|
||||
'@lgDown': {
|
||||
display: props.alwaysDisplayToolbar ? 'flex' : 'none',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<ControlButtonBox {...props} />
|
||||
</SpanBox>
|
||||
{!props.alwaysDisplayToolbar && (
|
||||
<SpanBox
|
||||
css={{
|
||||
width: '100%',
|
||||
'@lgDown': {
|
||||
display: 'none',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<ControlButtonBox {...props} />
|
||||
</SpanBox>
|
||||
)}
|
||||
</HStack>
|
||||
</VStack>
|
||||
</>
|
||||
|
|
|
|||
Loading…
Reference in a new issue