Skip to content

Commit

Permalink
fix: Report toolbar positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaclennan committed Oct 6, 2019
1 parent 7febef4 commit eeb3691
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/internal/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ import { makeStyles } from '../utils/styles'
const useStyles = makeStyles({
root: {
zIndex: 10,
position: 'sticky',
top: 0,
left: 0,
right: 0,
padding: 8,
flexDirection: 'row',
padding: '8px !important',
flexDirection: 'row !important',
'@media only print': {
display: 'none'
}
Expand All @@ -29,6 +28,7 @@ const Toolbar = ({ children }: Props) => {
<AppBar
elevation={0}
color="default"
position="fixed"
className={classes.root + ' d-print-none'}>
{children}
</AppBar>
Expand Down

0 comments on commit eeb3691

Please sign in to comment.