Added some styling to monitor details page

This commit is contained in:
Daniel Cojocea
2024-07-17 14:59:37 -04:00
parent b7e6e44b88
commit 5c8aaccad8
3 changed files with 13 additions and 2 deletions

View File

@@ -67,6 +67,9 @@
color: var(--env-var-color-5);
padding: 6px var(--env-var-spacing-2);
}
.MuiTable-root .MuiTableBody-root .MuiTableRow-root {
height: 50px;
}
.MuiPaper-root + .MuiPagination-root {
flex: 1;

View File

@@ -8,6 +8,6 @@
.main-content>div:nth-child(2){
position: relative;
overflow-y: auto;
/* overflow-y: auto; */
flex: 1;
}

View File

@@ -106,7 +106,15 @@ const DetailsPage = () => {
};
return (
<div>
<div
className="monitor-details"
style={{
padding: `${theme.content.pY} ${theme.content.pX}`,
}}
>
<Typography component="h1" mb={theme.gap.small}>
History
</Typography>
<BasicTable data={data} paginated={true} />
</div>
);