Skip to content

Commit

Permalink
Change AppBars to dense
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Aug 17, 2020
1 parent 3a4fe8d commit 5abf6da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/CustomAppBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ export default function CustomAppBar(props){

return(
<>
<AppBar position="sticky" elevation={2}>
<Toolbar>
<AppBar position="sticky" elevation={2} >
<Toolbar variant="dense">
<Typography variant="h6" className={classes.title}>
{props.title}
</Typography>
Expand Down
2 changes: 1 addition & 1 deletion src/ItemViewAppBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function ItemViewAppBar(props){
return(
<>
<AppBar position="sticky" color="secondary" elevation={2}>
<Toolbar>
<Toolbar variant="dense">
<Tooltip title={"Close Item"}
arrow
onClick={() => props.setSidebarOpen(false)}
Expand Down

0 comments on commit 5abf6da

Please sign in to comment.