mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Disable margins on small screens again
Need to fix how this is down across all smaller devices, until then we can disable so the fonts stuff can be deployed.
This commit is contained in:
parent
6446f03469
commit
4042408126
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