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.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/features/workspaces/components/WorkspaceDrawer.js b/src/features/workspaces/components/WorkspaceDrawer.js
index ae67b9ea4..d48b55f12 100644
--- a/src/features/workspaces/components/WorkspaceDrawer.js
+++ b/src/features/workspaces/components/WorkspaceDrawer.js
@@ -45,24 +45,24 @@ const messages = defineMessages({
45 45
46const styles = theme => ({ 46const styles = theme => ({
47 drawer: { 47 drawer: {
48 backgroundColor: theme.workspaceDrawerBackground, 48 background: theme.workspaces.drawer.background,
49 width: `${theme.workspaceDrawerWidth}px`, 49 width: `${theme.workspaces.drawer.width}px`,
50 }, 50 },
51 headline: { 51 headline: {
52 fontSize: '24px', 52 fontSize: '24px',
53 marginTop: '38px', 53 marginTop: '38px',
54 marginBottom: '25px', 54 marginBottom: '25px',
55 marginLeft: theme.workspaceDrawerPadding, 55 marginLeft: theme.workspaces.drawer.padding,
56 }, 56 },
57 workspacesSettingsButton: { 57 workspacesSettingsButton: {
58 float: 'right', 58 float: 'right',
59 marginRight: theme.workspaceDrawerPadding, 59 marginRight: theme.workspaces.drawer.padding,
60 marginTop: '2px', 60 marginTop: '2px',
61 }, 61 },
62 workspacesSettingsButtonIcon: { 62 workspacesSettingsButtonIcon: {
63 fill: theme.workspaceDrawerAddButtonColor, 63 fill: theme.workspaces.drawer.buttons.color,
64 '&:hover': { 64 '&:hover': {
65 fill: theme.workspaceDrawerAddButtonHoverColor, 65 fill: theme.workspaces.drawer.buttons.hoverColor,
66 }, 66 },
67 }, 67 },
68 workspaces: { 68 workspaces: {
@@ -80,11 +80,11 @@ const styles = theme => ({
80 }, 80 },
81 addNewWorkspaceLabel: { 81 addNewWorkspaceLabel: {
82 height: 'auto', 82 height: 'auto',
83 color: theme.workspaces.drawer.addButton.color, 83 color: theme.workspaces.drawer.buttons.color,
84 marginTop: 40, 84 marginTop: 40,
85 textAlign: 'center', 85 textAlign: 'center',
86 '& > svg': { 86 '& > svg': {
87 fill: theme.workspaces.drawer.addButton.color, 87 fill: theme.workspaces.drawer.buttons.color,
88 }, 88 },
89 '& > span': { 89 '& > span': {
90 fontSize: '13px', 90 fontSize: '13px',
@@ -93,9 +93,9 @@ const styles = theme => ({
93 top: -3, 93 top: -3,
94 }, 94 },
95 '&:hover': { 95 '&:hover': {
96 color: theme.workspaces.drawer.addButton.hoverColor, 96 color: theme.workspaces.drawer.buttons.hoverColor,
97 '& > svg': { 97 '& > svg': {
98 fill: theme.workspaces.drawer.addButton.hoverColor, 98 fill: theme.workspaces.drawer.buttons.hoverColor,
99 }, 99 },
100 }, 100 },
101 }, 101 },