mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #340 from omnivore-app/fix/mobile-email-help
Display the informational button on the mobile UI for emails
This commit is contained in:
commit
102c747a99
1 changed files with 10 additions and 3 deletions
|
|
@ -36,7 +36,6 @@ type CopyTextButtonProps = {
|
|||
}
|
||||
|
||||
const HeaderWrapper = styled(Box, {
|
||||
display: 'none',
|
||||
width: '863px',
|
||||
'@md': {
|
||||
display: 'block',
|
||||
|
|
@ -63,11 +62,14 @@ const TableCard = styled(Box, {
|
|||
const TableHeading = styled(Box, {
|
||||
backgroundColor: '$grayBgActive',
|
||||
border: '1px solid rgba(0, 0, 0, 0.06)',
|
||||
display: 'flex',
|
||||
display: 'none',
|
||||
alignItems: 'center',
|
||||
padding: '14px 0 14px 40px',
|
||||
borderRadius: '5px 5px 0px 0px',
|
||||
width: '863px',
|
||||
'@md': {
|
||||
display: 'flex',
|
||||
}
|
||||
})
|
||||
|
||||
const Input = styled('input', {
|
||||
|
|
@ -244,7 +246,12 @@ export default function EmailsPage(): JSX.Element {
|
|||
</a>
|
||||
</Link>
|
||||
</Box>
|
||||
<Box>
|
||||
<Box css={{
|
||||
display: 'none',
|
||||
'@md': {
|
||||
display: 'unset',
|
||||
},
|
||||
}}>
|
||||
<Button
|
||||
onClick={createEmail}
|
||||
style="ctaDarkYellow"
|
||||
|
|
|
|||
Loading…
Reference in a new issue