Added hover style change for better recognition

This commit is contained in:
G4mingJon4s 2022-09-14 15:59:55 +02:00
parent c29b4cfda9
commit 22a35af6b6

@ -125,7 +125,7 @@ export function TerminalRoot({ terminal, router, player }: IProps): React.ReactE
paragraph={false} paragraph={false}
onClick={() => terminal.connectToServer(player, item.hostname)} onClick={() => terminal.connectToServer(player, item.hostname)}
> >
<Typography sx={{ textDecoration: 'underline' }}>{item.hostname}</Typography> <Typography sx={{ textDecoration: 'underline', "&:hover": { textDecoration: 'none'} }}>{item.hostname}</Typography>
</MuiLink> </MuiLink>
</> </>
)} )}