Skip to content

Commit 4eeea10

Browse files
committed
Use correct css variables for Link
1 parent b801c78 commit 4eeea10

File tree

1 file changed

+4
-4
lines changed
  • extensions/ql-vscode/src/view/common

1 file changed

+4
-4
lines changed

extensions/ql-vscode/src/view/common/Link.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { styled } from "styled-components";
33
export const Link = styled.a`
44
background: transparent;
55
box-sizing: border-box;
6-
color: var(--link-foreground);
6+
color: var(--vscode-textLink-foreground);
77
cursor: pointer;
88
fill: currentcolor;
9-
font-family: var(--font-family);
10-
font-size: var(--type-ramp-base-font-size);
11-
line-height: var(--type-ramp-base-line-height);
9+
font-family: var(--vscode-font-family);
10+
font-size: var(--vscode-font-size);
11+
line-height: normal;
1212
outline: none;
1313
1414
&:hover {

0 commit comments

Comments
 (0)