Skip to content

Commit

Permalink
margins and shit
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisinajar committed Jul 31, 2024
1 parent 6cdf622 commit 4eb370a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/combat/stance-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Button from "@mui/material/Button";
import Grid from "@mui/material/Grid";
import Tooltip from "@mui/material/Tooltip";
import Typography from "@mui/material/Typography";
import Divider from "@mui/material/Divider";

import { useHero } from "src/hooks/use-hero";
import { HeroStance } from "src/generated/graphql";
Expand Down Expand Up @@ -64,12 +65,12 @@ export function StanceSelector(props: {

return (
<Grid item xs={12}>
<Grid container sx={{ textAlign: "center" }} columns={6}>
<Grid container sx={{ textAlign: "center" }} columns={6} spacing={2}>
<Grid item xs={6}>
<hr />
<Divider />
</Grid>
<Grid item lg={1} xs={6}>
<Typography variant="h5">Select Stance</Typography>
<Grid item xs={6}>
<Typography variant="h5">Select Combat Style</Typography>
</Grid>
{stances.map((stance) => (
<Grid item lg={1} md={2} sm={3} xs={6} key={stance.name}>
Expand Down

0 comments on commit 4eb370a

Please sign in to comment.