aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/components/WorkspaceDrawer.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/workspaces/components/WorkspaceDrawer.js')
-rw-r--r--src/features/workspaces/components/WorkspaceDrawer.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/features/workspaces/components/WorkspaceDrawer.js b/src/features/workspaces/components/WorkspaceDrawer.js
index 7bf3684c0..28e74b287 100644
--- a/src/features/workspaces/components/WorkspaceDrawer.js
+++ b/src/features/workspaces/components/WorkspaceDrawer.js
@@ -22,17 +22,17 @@ const messages = defineMessages({
22const styles = theme => ({ 22const styles = theme => ({
23 drawer: { 23 drawer: {
24 backgroundColor: theme.workspaceDrawerBackground, 24 backgroundColor: theme.workspaceDrawerBackground,
25 width: theme.workspaceDrawerWidth, 25 width: `${theme.workspaceDrawerWidth}px`,
26 }, 26 },
27 headline: { 27 headline: {
28 fontSize: '24px', 28 fontSize: '24px',
29 marginTop: '38px', 29 marginTop: '38px',
30 marginBottom: '25px', 30 marginBottom: '25px',
31 marginLeft: '10px', 31 marginLeft: `${theme.workspaceDrawerPadding}px`,
32 }, 32 },
33 addWorkspaceButton: { 33 addWorkspaceButton: {
34 float: 'right', 34 float: 'right',
35 marginRight: '10px', 35 marginRight: `${theme.workspaceDrawerPadding}px`,
36 marginTop: '2px', 36 marginTop: '2px',
37 }, 37 },
38 addWorkspaceButtonIcon: { 38 addWorkspaceButtonIcon: {