refactor(web/menu): reduce center circle size

This commit is contained in:
Luke
2023-01-27 21:59:03 +01:00
parent c7ec1b7307
commit a8abefa2d0

View File

@@ -141,16 +141,16 @@ const PlanetMenu: React.FC = () => {
); );
})} })}
<g transform="translate(175, 175)"> <g transform="translate(175, 175)">
<circle r={40} className={classes.centerCircle} /> <circle r={30} className={classes.centerCircle} />
</g> </g>
<FontAwesomeIcon <FontAwesomeIcon
icon="xmark" icon="xmark"
className={classes.centerIcon} className={classes.centerIcon}
color="#fff" color="#fff"
width={35} width={28}
height={35} height={28}
x={175 - 35 / 2} x={175 - 28 / 2}
y={175 - 35 / 2} y={175 - 28 / 2}
/> />
</svg> </svg>
</Box> </Box>