Skip to content

Commit bce57d0

Browse files
fix(whats-new): No box-shadow when title is focused (#91794)
Remove box-shadow when title of a whats new post is focused
1 parent a8dc23f commit bce57d0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

static/app/components/sidebar/broadcastPanelItem.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ const Title = styled(ExternalLink)<Pick<BroadcastPanelItemProps, 'hasSeen'>>`
6565
font-size: ${p => p.theme.fontSizeLarge};
6666
color: ${p => p.theme.blue400};
6767
${p => !p.hasSeen && `font-weight: ${p.theme.fontWeightBold}`};
68+
&:focus-visible {
69+
box-shadow: none;
70+
}
6871
`;
6972

7073
const Message = styled('div')`

0 commit comments

Comments
 (0)