diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-23 16:30:24 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-23 16:30:24 +0100 |
commit | f1759ea3602b8dfe9e9c390d8f8b0a44eda6932c (patch) | |
tree | d1bd78e996968df066e583ea372cb4b95fcd930a /webui/src/pages | |
parent | 1164e3410e94709f1e355c5be65d3b117e2d6b2d (diff) | |
download | git-bug-f1759ea3602b8dfe9e9c390d8f8b0a44eda6932c.tar.gz |
webui: adjust some margins
Diffstat (limited to 'webui/src/pages')
-rw-r--r-- | webui/src/pages/bug/Bug.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webui/src/pages/bug/Bug.tsx b/webui/src/pages/bug/Bug.tsx index 3c4bb63b..1bc128dd 100644 --- a/webui/src/pages/bug/Bug.tsx +++ b/webui/src/pages/bug/Bug.tsx @@ -18,7 +18,7 @@ const useStyles = makeStyles(theme => ({ marginTop: theme.spacing(4), }, header: { - marginLeft: theme.spacing(1) + 40, + marginLeft: theme.spacing(3) + 40, }, title: { ...theme.typography.h5, @@ -30,12 +30,14 @@ const useStyles = makeStyles(theme => ({ container: { display: 'flex', marginBottom: theme.spacing(1), + marginRight: theme.spacing(2), + marginLeft: theme.spacing(2), }, timeline: { flex: 1, marginTop: theme.spacing(2), marginRight: theme.spacing(2), - minWidth: 0, + minWidth: 400, }, sidebar: { marginTop: theme.spacing(2), |