Skip to content

Commit

Permalink
refactor(web/menu): reduce center circle size
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWasTakenn committed Jan 27, 2023
1 parent c7ec1b7 commit a8abefa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions web/src/features/menu/planet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,16 @@ const PlanetMenu: React.FC = () => {
);
})}
<g transform="translate(175, 175)">
<circle r={40} className={classes.centerCircle} />
<circle r={30} className={classes.centerCircle} />
</g>
<FontAwesomeIcon
icon="xmark"
className={classes.centerIcon}
color="#fff"
width={35}
height={35}
x={175 - 35 / 2}
y={175 - 35 / 2}
width={28}
height={28}
x={175 - 28 / 2}
y={175 - 28 / 2}
/>
</svg>
</Box>
Expand Down

0 comments on commit a8abefa

Please sign in to comment.