-
Notifications
You must be signed in to change notification settings - Fork 0
refactor(website): refactor footer to pull "download data" button closer to React-rendered content #978
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
base: 981-migrate-covid-compare-side-by-side-page-to-react
Are you sure you want to change the base?
refactor(website): refactor footer to pull "download data" button closer to React-rendered content #978
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -34,14 +34,13 @@ const { title, forceLoggedOutState = false } = Astro.props; | |||||
| </script> | ||||||
| </head> | ||||||
|
|
||||||
| <body class='flex min-h-screen flex-col'> | ||||||
| <body class='flex h-screen flex-col'> | ||||||
|
||||||
| <body class='flex h-screen flex-col'> | |
| <body class='flex min-h-screen flex-col'> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The body needs a defined height so that h-full inside flex and grow works. The content does overflow the body, but it looks like it works, so I assume that this is fine?
fengelniederhammer marked this conversation as resolved.
Show resolved
Hide resolved
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I deleted this line (moved to
OrganismViewPageLayout) and reformatted the rest.