make grouping clearer and update readme

This commit is contained in:
Calli
2023-06-23 21:20:56 +03:00
parent 5146e0e4ff
commit b3abfe0574
7 changed files with 45 additions and 7 deletions

View File

@@ -19,7 +19,11 @@ export const AccountCard = ({
margin: 1,
}}
>
<Typography paddingLeft={2}>Account: {characters[0].account}</Typography>
<Typography style={{ fontSize: "0.8rem" }} paddingLeft={2}>
{characters[0].account !== "-"
? `Account: ${characters[0].account}`
: ""}
</Typography>
{characters.map((c) => (
<Stack
key={c.character.characterId}