Fix host filter overflow on small displays

This commit is contained in:
Reckless_Satoshi
2024-01-24 13:25:51 +00:00
parent bee30eafa9
commit edbc290fb4

View File

@ -316,12 +316,12 @@ const BookControl = ({
) : null}
{width > large ? (
<>
<Grid item sx={{ position: 'relative', top: '0.5em' }}>
<Typography variant='caption' color='text.secondary'>
{fav.currency === 1000 ? t(fav.type === 0 ? 'to' : 'from') : t('hosted by')}
</Typography>
</Grid>
) : null}
<Grid item>
<Select
autoWidth
@ -371,6 +371,8 @@ const BookControl = ({
)}
</Select>
</Grid>
</>
) : null}
</Grid>
<Divider />
</Box>