aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/bug/LabelChange.js
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2019-03-30 20:48:19 +0100
committerQuentin Gliech <quentingliech@gmail.com>2019-03-30 20:50:59 +0100
commit22089b5e628f1356e517d24d0346a8ec2def97fc (patch)
tree9e9a12e015433500042b1acfbac3e8ee2b4eb2f4 /webui/src/bug/LabelChange.js
parent850b9db8744c47b3f42b877078678f62ce77e38d (diff)
downloadgit-bug-22089b5e628f1356e517d24d0346a8ec2def97fc.tar.gz
webui: Rework timeline style
Diffstat (limited to 'webui/src/bug/LabelChange.js')
-rw-r--r--webui/src/bug/LabelChange.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/webui/src/bug/LabelChange.js b/webui/src/bug/LabelChange.js
index 9b19959e..6301f35f 100644
--- a/webui/src/bug/LabelChange.js
+++ b/webui/src/bug/LabelChange.js
@@ -8,6 +8,10 @@ import Label from '../Label';
const styles = theme => ({
main: {
...theme.typography.body2,
+ marginLeft: theme.spacing.unit + 40,
+ },
+ author: {
+ fontWeight: 'bold',
},
});
@@ -15,7 +19,7 @@ const LabelChange = ({ op, classes }) => {
const { added, removed } = op;
return (
<div className={classes.main}>
- <Author author={op.author} bold />
+ <Author author={op.author} className={classes.author} />
{added.length > 0 && <span> added the </span>}
{added.map((label, index) => (
<Label key={index} label={label} />