We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51bc654 commit fdf56ebCopy full SHA for fdf56eb
2 files changed
src/components/Link.styles.ts
@@ -7,7 +7,7 @@ type LinkProps = {
7
variant?: 'inline' | 'block'
8
}
9
10
-const linkInlineStyles = css`
+export const linkInlineStyles = css`
11
color: ${$theme.color.link};
12
text-underline-offset: 3px;
13
text-decoration-thickness: 2px;
src/components/Typography.ts
@@ -2,7 +2,8 @@ import { up } from 'styled-breakpoints'
2
import styled from 'styled-components'
3
4
import { $theme } from '../styles/theme'
5
-import { linkStyles } from './Link.styles'
+
6
+import { linkInlineStyles } from './Link.styles'
export const Heading1 = styled.h1`
font-weight: ${$theme.fontWeight.black};
@@ -45,7 +46,7 @@ export const TextBlock = styled.div`
45
46
47
48
a {
- ${linkStyles};
49
+ ${linkInlineStyles};
50
51
52
p {
0 commit comments