Commit 99705286 authored by Moody Salem's avatar Moody Salem

fix(lint): linter error

parent 9ec16c2b
...@@ -11,7 +11,7 @@ const VersionLabel = styled.span<{ enabled: boolean }>` ...@@ -11,7 +11,7 @@ const VersionLabel = styled.span<{ enabled: boolean }>`
background: ${({ theme, enabled }) => (enabled ? theme.primary1 : 'none')}; background: ${({ theme, enabled }) => (enabled ? theme.primary1 : 'none')};
color: ${({ theme, enabled }) => (enabled ? theme.white : theme.text1)}; color: ${({ theme, enabled }) => (enabled ? theme.white : theme.text1)};
font-size: 1rem; font-size: 1rem;
font-weight: ${({ theme, enabled }) => (enabled ? '500' : '400')}; font-weight: ${({ enabled }) => (enabled ? '500' : '400')};
:hover { :hover {
user-select: ${({ enabled }) => (enabled ? 'none' : 'initial')}; user-select: ${({ enabled }) => (enabled ? 'none' : 'initial')};
background: ${({ theme, enabled }) => (enabled ? theme.primary1 : 'none')}; background: ${({ theme, enabled }) => (enabled ? theme.primary1 : 'none')};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment