Merge pull request #855 from porink0424/fix/improve-design-in-analytics-page

Improve design of titles in the analytics page
This commit is contained in:
c-bata
2024-03-29 15:25:16 +09:00
committed by GitHub
+17 -3
View File
@@ -103,7 +103,14 @@ export const StudyDetail: FC<{
<PreferentialAnalytics studyId={studyId} />
) : (
<Box sx={{ display: "flex", width: "100%", flexDirection: "column" }}>
<Typography variant="h5" sx={{ margin: theme.spacing(2) }}>
<Typography
variant="h5"
sx={{
margin: theme.spacing(2),
marginTop: theme.spacing(4),
fontWeight: theme.typography.fontWeightBold,
}}
>
Hyperparameter Relationships
</Typography>
<Card sx={{ margin: theme.spacing(2) }}>
@@ -126,10 +133,17 @@ export const StudyDetail: FC<{
<GraphRank study={studyDetail} />
</CardContent>
</Card>
<Typography variant="h5" sx={{ margin: theme.spacing(2) }}>
<Typography
variant="h5"
sx={{
margin: theme.spacing(2),
marginTop: theme.spacing(4),
fontWeight: theme.typography.fontWeightBold,
}}
>
Empirical Distribution of the Objective Value
</Typography>
<Grid2 container spacing={2} sx={{ padding: theme.spacing(0, 2) }}>
<Grid2 container spacing={2} sx={{ padding: theme.spacing(2) }}>
{studyDetail !== null
? studyDetail.directions.map((d, i) => (
<Grid2 xs={6} key={i}>