From cb035f4e886f1d070d8c6ac3674eca944594b0e8 Mon Sep 17 00:00:00 2001 From: Ricardo Paes Date: Wed, 16 Mar 2022 13:57:15 -0300 Subject: [PATCH] :bug: Fixing marker that was on top of the number --- frontend/src/components/TicketListItem/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/TicketListItem/index.js b/frontend/src/components/TicketListItem/index.js index 16fab94..58bab3e 100644 --- a/frontend/src/components/TicketListItem/index.js +++ b/frontend/src/components/TicketListItem/index.js @@ -102,9 +102,9 @@ const useStyles = makeStyles(theme => ({ userTag: { position: "absolute", - marginRight: 5, - right: 5, - bottom: 5, + marginRight: 35, + right: 10, + bottom: 9, background:"#2576D2", color: "#ffffff", border:"1px solid #CCC", @@ -112,7 +112,7 @@ const useStyles = makeStyles(theme => ({ paddingLeft: 5, paddingRight: 5, borderRadius: 10, - fontSize: "1em" + fontSize: "0.9em" }, }));