Merge pull request #2791 from bluewave-labs/fix/remove-logs-descriptions

Fix: Remove description text and dividers from Logs sections
This commit is contained in:
Alexander Holliday
2025-08-14 20:36:44 -07:00
committed by GitHub
2 changed files with 1 additions and 23 deletions
+1 -21
View File
@@ -51,34 +51,14 @@ const Logs = () => {
];
return (
<Stack gap={theme.spacing(4)}>
<Box
sx={{
position: "sticky",
top: theme.spacing(17),
backdropFilter: "blur(10px)",
paddingY: theme.spacing(5),
paddingLeft: theme.spacing(6),
}}
>
<Typography variant="h2">{t("logsPage.description")}</Typography>
</Box>
<Divider
color={theme.palette.accent.main}
sx={{
position: "sticky",
top: theme.spacing(33),
backdropFilter: "blur(10px)",
}}
/>
<Stack
direction="row"
alignItems="center"
gap={theme.spacing(4)}
mt={theme.spacing(10)}
sx={{
position: "sticky",
top: theme.spacing(34),
top: theme.spacing(17),
backdropFilter: "blur(10px)",
paddingTop: theme.spacing(4),
paddingLeft: theme.spacing(6),
-2
View File
@@ -29,8 +29,6 @@ const QueueDetails = () => {
return (
<Stack gap={theme.spacing(4)}>
<Typography variant="h2">{t("queuePage.metricsTable.title")}</Typography>
<Divider color={theme.palette.accent.main} />
<Stack
gap={theme.spacing(20)}
mt={theme.spacing(10)}