mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Improve printing of articles
This commit is contained in:
parent
178fa5e42d
commit
a4c1253bca
3 changed files with 9 additions and 0 deletions
|
|
@ -458,6 +458,9 @@ export function ArticleContainer(props: ArticleContainerProps): JSX.Element {
|
|||
'&:hover': {
|
||||
opacity: 0.8,
|
||||
},
|
||||
'@media print': {
|
||||
display: 'none',
|
||||
},
|
||||
}}
|
||||
onClick={() => setShowReportIssuesModal(true)}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -43,6 +43,9 @@ export function ReaderHeader(props: ReaderHeaderProps): JSX.Element {
|
|||
bg: '$readerBg',
|
||||
pointerEvents: 'unset',
|
||||
},
|
||||
'@media print': {
|
||||
display: 'none',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<HStack
|
||||
|
|
|
|||
|
|
@ -463,6 +463,9 @@ export default function Home(): JSX.Element {
|
|||
background: '$readerMargin',
|
||||
overflow: 'scroll',
|
||||
paddingTop: '80px',
|
||||
'@media print': {
|
||||
paddingTop: '0px',
|
||||
},
|
||||
}}
|
||||
>
|
||||
{article && viewerData?.me ? (
|
||||
|
|
|
|||
Loading…
Reference in a new issue