Skip to content

Style fixes #408

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 5 commits into from
Jul 26, 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
fix overview summary footer
Signed-off-by: shmck <shawn.j.mckay@gmail.com>
  • Loading branch information
ShMcK committed Jul 26, 2020
commit 99bf1a965829a60458165e3d942d729b798e2796
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const styles = {
display: 'flex' as 'flex',
flexDirection: 'column' as 'column',
width: '100%',
height: '100%',
},
nav: (theme: Theme) => ({
height: theme['$nav-height'],
Expand All @@ -22,6 +23,7 @@ const styles = {
cursor: 'pointer',
}),
content: {
height: '100%',
paddingBottom: '5rem',
},
header: (theme: Theme) => ({
Expand Down Expand Up @@ -54,10 +56,11 @@ const styles = {
alignItems: 'center' as 'center',
justifyContent: 'flex-end' as 'flex-end',
height: theme['$footer-height'],
padding: '1rem',
padding: '0rem 0.5rem',
paddingRight: '2rem',
backgroundColor: theme['$color-black'],
width: '100%',
zIndex: 100,
}),
}

Expand Down