Skip to content

Commit 30d7f45

Browse files
authored
chore(issue-details): Update json link style (#86103)
1 parent bf1410e commit 30d7f45

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

static/app/views/issueDetails/streamline/eventTitle.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import {type CSSProperties, forwardRef, Fragment} from 'react';
22
import {css, type SerializedStyles, useTheme} from '@emotion/react';
33
import styled from '@emotion/styled';
4+
import Color from 'color';
45

56
import {Button, LinkButton} from 'sentry/components/button';
67
import {useActionableItemsWithProguardErrors} from 'sentry/components/events/interfaces/crashContent/exception/useActionableItems';
@@ -272,10 +273,12 @@ const JsonLinkWrapper = styled('div')`
272273
const JsonLink = styled(ExternalLink)`
273274
color: ${p => p.theme.gray300};
274275
text-decoration: underline;
275-
text-decoration-color: ${p => p.theme.translucentGray200};
276+
text-decoration-color: ${p => Color(p.theme.gray300).alpha(0.5).string()};
276277
277278
:hover {
278279
color: ${p => p.theme.gray300};
280+
text-decoration: underline;
281+
text-decoration-color: ${p => p.theme.gray300};
279282
}
280283
`;
281284

0 commit comments

Comments
 (0)