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:
Jackson Harper 2022-06-15 16:31:50 -07:00
parent 6446f03469
commit 4042408126

View file

@ -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>