Fix: center placeholder in content area and merge branch 'develop' into fix/placeholder-center-align

This commit is contained in:
karenvicent
2025-06-27 10:29:28 -04:00
parent 866b29db68
commit eca4bb0cb5
2 changed files with 12 additions and 1 deletions

View File

@@ -221,7 +221,15 @@ const PieChart = ({ audits }) => {
const colorMap = getColors(performance);
return (
<Box onMouseLeave={() => setExpand(false)}>
<Box
onMouseLeave={() => setExpand(false)}
sx={{
display: "flex",
justifyContent: "center",
alignItems: "center",
width: "100%",
}}
>
{expand ? (
<MuiPieChart
series={[

View File

@@ -26,6 +26,9 @@ const PerformanceReport = ({ shouldRender, audits }) => {
<Typography
variant="body1"
mt="auto"
sx={{
textAlign: "center",
}}
>
{t("pageSpeedDetailsPerformanceReport")}{" "}
<Typography