Skip to content

Commit

Permalink
Fix story
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan committed Oct 9, 2024
1 parent b0a5c29 commit 855b6a5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/react/src/Timeline/Timeline.features.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Timeline from './Timeline'
import Octicon from '../Octicon'
import {GitBranchIcon, GitCommitIcon, GitMergeIcon} from '@primer/octicons-react'
import Link from '../Link'
import {get} from '../constants'

Check failure on line 8 in packages/react/src/Timeline/Timeline.features.stories.tsx

View workflow job for this annotation

GitHub Actions / lint

'get' is defined but never used

export default {
title: 'Components/Timeline/Features',
Expand Down Expand Up @@ -76,7 +77,11 @@ export const WithInlineLinks = () => (
<Octicon icon={GitCommitIcon} aria-label="Commit" />
</Timeline.Badge>
<Timeline.Body>
<Link href="#" sx={{fontWeight: 'bold', color: 'fg.default', mr: 1}} muted>
<Link
href="#"
sx={{fontWeight: 'bold', color: 'fg.default', mr: 1, '&:hover': {color: 'var(--fgColor-accent)'}}}
muted
>
Monalisa
</Link>
enabled auto-merge (squash)
Expand Down

0 comments on commit 855b6a5

Please sign in to comment.