Started MUI Responsive values

This commit is contained in:
Kristoffer Juelsenn 2022-04-24 22:29:06 +02:00
parent 547e566a80
commit 6f9685ea60
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ function ClipboardButton(props) {
function ButtonLink(props) {
return (
<Link to={`/tournament/${props.tournamentId}` + props.targetPath} >
<Button variant="contained" color="primary" disabled={props.activeTitle === props.title || props.viewTournament} sx={{margin: "15px", fontSize: "1.2em"}} >{props.title}</Button>
<Button variant="contained" color="primary" disabled={props.activeTitle === props.title || props.viewTournament} sx={{margin: "1.5vw", fontSize: "1.2em"}} >{props.title}</Button>
</Link>
);
}