mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #809 from omnivore-app/fix/small-screen-margins
Disable margins on small screens again
This commit is contained in:
commit
107b74f093
1 changed files with 8 additions and 1 deletions
|
|
@ -100,7 +100,11 @@ export function ReaderSettingsControl(props: ReaderSettingsProps): JSX.Element {
|
|||
</Box>
|
||||
</HStack>
|
||||
</HStack>
|
||||
<HorizontalDivider />
|
||||
<HorizontalDivider css={{
|
||||
'@smDown': {
|
||||
display: 'none',
|
||||
},
|
||||
}}/>
|
||||
<VStack
|
||||
css={{
|
||||
p: '0px',
|
||||
|
|
@ -108,6 +112,9 @@ export function ReaderSettingsControl(props: ReaderSettingsProps): JSX.Element {
|
|||
pb: '14px',
|
||||
width: '100%',
|
||||
height: '100%',
|
||||
'@smDown': {
|
||||
display: 'none',
|
||||
},
|
||||
}}
|
||||
>
|
||||
<StyledText color={theme.colors.readerFontTransparent.toString()} css={{ pl: '8px', m: '0px', pt: '14px' }}>Margin:</StyledText>
|
||||
|
|
|
|||
Loading…
Reference in a new issue