Merge pull request #681 from GlancingMind/webui-fix-alignment-of-comment-counter-for-high-number

Michael Muré created

Fix margin and alignment of comment counter for high comment count

Change summary

webui/src/pages/list/BugRow.tsx | 2 ++
1 file changed, 2 insertions(+)

Detailed changes

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',