Skip to content

Feature/minor fixes #75

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 3 commits into from
Jan 14, 2020
Merged
Changes from 1 commit
Commits
File filter

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 spacing/scroll issue on overview page
  • Loading branch information
ShMcK committed Jan 14, 2020
commit f82c2b893e48e4cc9c6b304cc1b467cb76518420
5 changes: 4 additions & 1 deletion web-app/src/containers/Overview/OverviewPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ import * as G from 'typings/graphql'
import Button from '../../components/Button'
import Markdown from '../../components/Markdown'

const footerHeight = 50

const styles = {
page: {
position: 'relative' as 'relative',
display: 'flex' as 'flex',
flexDirection: 'column' as 'column',
width: '100%',
paddingBottom: footerHeight,
},
summary: {
padding: '0rem 1rem 1rem 1rem',
Expand Down Expand Up @@ -38,7 +41,7 @@ const styles = {
flexDirection: 'row' as 'row',
alignItems: 'center' as 'center',
justifyContent: 'flex-end' as 'flex-end',
height: '50px',
height: footerHeight,
padding: '1rem',
paddingRight: '2rem',
backgroundColor: 'black',
Expand Down