changing the font to open sans for typography in theme.ts, and making the toggled one bold

This commit is contained in:
csawatzky 2025-05-14 15:25:51 -06:00
parent 62cc0a2e97
commit 39a90c93cb
2 changed files with 16 additions and 2 deletions

View file

@ -148,9 +148,9 @@ export default function ButtonGroup(props: Props){
}}>
{b.icon
?
b.icon
b.icon
:
<Typography sx={{fontSize: textSize}}>
<Typography sx={{fontSize: textSize ?? 13, fontWeight: checkToggled(i) ? 650 : 500}}>
{b.title}
</Typography>
}