diff options
author | Kurkó Mihály <kurkomisi@users.noreply.github.com> | 2018-03-08 16:22:21 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-03-08 16:22:21 +0800 |
commit | 704840a8ad9e75d4a00e734f901cac21c51b7eb5 (patch) | |
tree | e2b012c052986bb40053f09394aefb5c23474a5a /dashboard/assets/components/SideBar.jsx | |
parent | 3ec1b9a92dc09ff33f6fae2e8daa7862d4c51bb1 (diff) | |
download | dexon-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar dexon-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.gz dexon-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.bz2 dexon-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.lz dexon-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.xz dexon-704840a8ad9e75d4a00e734f901cac21c51b7eb5.tar.zst dexon-704840a8ad9e75d4a00e734f901cac21c51b7eb5.zip |
cmd, dashboard: use webpack dev server, remove custom assets (#16263)
* cmd, dashboard: remove custom assets, webpack dev server
* dashboard: yarn commands, small fixes
Diffstat (limited to 'dashboard/assets/components/SideBar.jsx')
-rw-r--r-- | dashboard/assets/components/SideBar.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dashboard/assets/components/SideBar.jsx b/dashboard/assets/components/SideBar.jsx index c2e419ae9..463d6cb40 100644 --- a/dashboard/assets/components/SideBar.jsx +++ b/dashboard/assets/components/SideBar.jsx @@ -41,10 +41,10 @@ const styles = { // themeStyles returns the styles generated from the theme for the component. const themeStyles = theme => ({ list: { - background: theme.palette.background.appBar, + background: theme.palette.grey[900], }, listItem: { - minWidth: theme.spacing.unit * 3, + minWidth: theme.spacing.unit * 7, }, icon: { fontSize: theme.spacing.unit * 3, |