diff options
author | Sascha <GlancingMind@outlook.com> | 2021-05-25 17:37:38 +0200 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-05-25 17:42:47 +0200 |
commit | 63680c6d4cc122506346d420489422b6ced82bbc (patch) | |
tree | d335f826f23275d71ecbd850685e759662f3ddd3 /webui | |
parent | 3d4385483e1a2e43814e4b3d83221f1a3477cb88 (diff) | |
download | git-bug-63680c6d4cc122506346d420489422b6ced82bbc.tar.gz |
Fix alignment of comment counter for high number
Diffstat (limited to 'webui')
-rw-r--r-- | webui/src/pages/list/BugRow.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webui/src/pages/list/BugRow.tsx b/webui/src/pages/list/BugRow.tsx index 562149f3..68a3b299 100644 --- a/webui/src/pages/list/BugRow.tsx +++ b/webui/src/pages/list/BugRow.tsx @@ -84,7 +84,9 @@ const useStyles = makeStyles((theme) => ({ }, commentCount: { fontSize: '1rem', + minWidth: '2rem', marginLeft: theme.spacing(0.5), + marginRight: theme.spacing(1), }, commentCountCell: { display: 'inline-flex', |