Skip to content

refactor(site): remove as many 100vh units as possible #9272

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Aug 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix health page
  • Loading branch information
BrunoQuaresma committed Aug 23, 2023
commit 8469894272664fad6c22c1a6e32e726a68437e9d
10 changes: 4 additions & 6 deletions site/src/pages/HealthPage/HealthPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,7 @@ export function HealthPageView({
const styles = useStyles()

return (
<DashboardFullPage
sx={{
overflow: "hidden",
}}
>
<DashboardFullPage>
<FullWidthPageHeader sticky={false}>
<Stack direction="row" spacing={2} alignItems="center">
{healthStatus.healthy ? (
Expand Down Expand Up @@ -113,8 +109,10 @@ export function HealthPageView({
<Box
sx={{
display: "flex",
flexBasis: 0,
flex: 1,
alignItems: "start",
height: "100%",
overflow: "hidden",
}}
>
<Box
Expand Down