Fix SpeciesFacePicker desktop alignment
Oops, I fixed mobile alignment by centering this, but didn't realize I broke desktop alignment! Now we do different alignment on different sizes 😅
This commit is contained in:
parent
f29a269b94
commit
c0e1c78d75
1 changed files with 1 additions and 1 deletions
|
@ -685,7 +685,7 @@ function ItemPageOutfitPreview({ itemId }) {
|
||||||
return (
|
return (
|
||||||
<Stack
|
<Stack
|
||||||
direction={{ base: "column", md: "row" }}
|
direction={{ base: "column", md: "row" }}
|
||||||
align="center"
|
align={{ base: "center", md: "flex-start" }}
|
||||||
justify="center"
|
justify="center"
|
||||||
spacing="8"
|
spacing="8"
|
||||||
width="100%"
|
width="100%"
|
||||||
|
|
Loading…
Reference in a new issue