We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ec16c2 commit 9970528Copy full SHA for 9970528
src/components/Header/VersionSwitch.tsx
@@ -11,7 +11,7 @@ const VersionLabel = styled.span<{ enabled: boolean }>`
11
background: ${({ theme, enabled }) => (enabled ? theme.primary1 : 'none')};
12
color: ${({ theme, enabled }) => (enabled ? theme.white : theme.text1)};
13
font-size: 1rem;
14
- font-weight: ${({ theme, enabled }) => (enabled ? '500' : '400')};
+ font-weight: ${({ enabled }) => (enabled ? '500' : '400')};
15
:hover {
16
user-select: ${({ enabled }) => (enabled ? 'none' : 'initial')};
17
0 commit comments