mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-22 02:33:17 +00:00
Fix host filter overflow on small displays
This commit is contained in:
@ -316,12 +316,12 @@ const BookControl = ({
|
|||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
{width > large ? (
|
{width > large ? (
|
||||||
|
<>
|
||||||
<Grid item sx={{ position: 'relative', top: '0.5em' }}>
|
<Grid item sx={{ position: 'relative', top: '0.5em' }}>
|
||||||
<Typography variant='caption' color='text.secondary'>
|
<Typography variant='caption' color='text.secondary'>
|
||||||
{fav.currency === 1000 ? t(fav.type === 0 ? 'to' : 'from') : t('hosted by')}
|
{fav.currency === 1000 ? t(fav.type === 0 ? 'to' : 'from') : t('hosted by')}
|
||||||
</Typography>
|
</Typography>
|
||||||
</Grid>
|
</Grid>
|
||||||
) : null}
|
|
||||||
<Grid item>
|
<Grid item>
|
||||||
<Select
|
<Select
|
||||||
autoWidth
|
autoWidth
|
||||||
@ -371,6 +371,8 @@ const BookControl = ({
|
|||||||
)}
|
)}
|
||||||
</Select>
|
</Select>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
</>
|
||||||
|
) : null}
|
||||||
</Grid>
|
</Grid>
|
||||||
<Divider />
|
<Divider />
|
||||||
</Box>
|
</Box>
|
||||||
|
Reference in New Issue
Block a user