diff --git a/static/app/components/eventOrGroupTitle.tsx b/static/app/components/eventOrGroupTitle.tsx index d3a0cc4ea74b05..3ff33e3de6c5fd 100644 --- a/static/app/components/eventOrGroupTitle.tsx +++ b/static/app/components/eventOrGroupTitle.tsx @@ -90,12 +90,14 @@ const Message = styled('span')` height: 100%; color: ${p => p.theme.textColor}; font-weight: ${p => p.theme.fontWeightNormal}; + font-size: ${p => p.theme.fontSizeMedium}; `; const Title = styled('span')` ${p => p.theme.overflowEllipsis}; display: inline-block; color: ${p => p.theme.textColor}; + font-size: ${p => p.theme.fontSizeMedium}; `; const Wrapper = styled('span')<{hasNewLayout: boolean}>`