Skip to content

Commit

Permalink
fix(Workspaces): Allow scrolling in Workspaces drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Oct 18, 2019
1 parent 3f150f9 commit 5c1c0db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/features/workspaces/components/WorkspaceDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ const styles = theme => ({
drawer: {
background: theme.workspaces.drawer.background,
width: `${theme.workspaces.drawer.width}px`,
display: 'flex',
flexDirection: 'column',
},
headline: {
fontSize: '24px',
Expand All @@ -75,6 +77,7 @@ const styles = theme => ({
},
workspaces: {
height: 'auto',
overflowY: 'scroll',
},
premiumAnnouncement: {
padding: '20px',
Expand All @@ -89,7 +92,7 @@ const styles = theme => ({
addNewWorkspaceLabel: {
height: 'auto',
color: theme.workspaces.drawer.buttons.color,
marginTop: 40,
margin: [40, 0],
textAlign: 'center',
'& > svg': {
fill: theme.workspaces.drawer.buttons.color,
Expand Down

0 comments on commit 5c1c0db

Please sign in to comment.