Skip to content

Commit 14701cf

Browse files
committed
Change to span and make colours consistent in all themes
1 parent 487713d commit 14701cf

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/Tag.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { styled } from "styled-components";
22

3-
export const Tag = styled.div`
4-
background-color: var(--vscode-badge-background);
5-
border: 1px solid var(--vscode-button-border, transparent);
3+
export const Tag = styled.span`
4+
background-color: #4d4d4d;
5+
border: 1px solid transparent;
66
border-radius: 2px;
7-
color: var(--vscode-badge-foreground);
7+
color: #ffffff;
88
padding: 2px 4px;
99
text-transform: uppercase;
1010
box-sizing: border-box;

0 commit comments

Comments
 (0)