From 9f618ab36c6ad8eebe2f10f87dc003b7d607693c Mon Sep 17 00:00:00 2001 From: Andrew P Maney Date: Sat, 14 Mar 2020 12:32:13 -0700 Subject: [PATCH] Tasks: changes margin units from px to em --- src/components/Tasks/TaskListItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Tasks/TaskListItem.tsx b/src/components/Tasks/TaskListItem.tsx index 8611f4a..c6f1536 100644 --- a/src/components/Tasks/TaskListItem.tsx +++ b/src/components/Tasks/TaskListItem.tsx @@ -29,7 +29,7 @@ const TagsList = React.memo((props: { tags: string[] }) => ( color="secondary" size="small" label={tag} - style={{ marginRight: '10px' }} + style={{ marginRight: '0.75em' }} component="li" />)} ));