align planet icons for compact mode

This commit is contained in:
Calli
2023-07-03 22:36:23 +03:00
parent 826c405d4b
commit df692c845e
2 changed files with 3 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ export const AccountCard = ({
<Typography style={{ fontSize: "0.8rem" }} paddingLeft={2}> <Typography style={{ fontSize: "0.8rem" }} paddingLeft={2}>
{characters[0].account !== "-" {characters[0].account !== "-"
? `Account: ${characters[0].account}` ? `Account: ${characters[0].account}`
: ""} : "No account name"}
</Typography> </Typography>
{characters.map((c) => ( {characters.map((c) => (
<Stack <Stack

View File

@@ -21,8 +21,9 @@ const StackItem = styled(Stack)(({ theme }) => ({
padding: 0, padding: 0,
margin: "0 !important", margin: "0 !important",
textAlign: "left", textAlign: "left",
justifyContent: "center", justifyContent: "flex-start",
alignItems: "center", alignItems: "center",
minHeight: "170px",
})); }));
export interface Pin { export interface Pin {