Merge pull request #209 from GRA0007/dev

Hotfix: remove traces of emotion
This commit is contained in:
Benjamin Grant 2022-08-19 17:33:43 +10:00 committed by GitHub
commit 57e22975fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,15 +30,6 @@ export const CheckboxInput = styled('input')`
border: 2px solid var(--text); border: 2px solid var(--text);
background-color: var(--text); background-color: var(--text);
} }
&:focus + label {
box-shadow: 0 0 0 2px ${props => props.theme.text}44;
background-color: ${props => props.theme.text}44;
outline: none;
}
&:checked:focus + label {
box-shadow: 0 0 0 2px ${props => props.color || props.theme.primary}44;
background-color: ${props => props.color || props.theme.primary}44;
}
` `
export const CheckboxLabel = styled('label')` export const CheckboxLabel = styled('label')`
@ -114,10 +105,7 @@ export const Icon = styled('img')`
height: 24px; height: 24px;
width: 24px; width: 24px;
margin-right: 12px; margin-right: 12px;
filter: invert(1);
${props => props.theme.mode === 'light' && `
filter: invert(1);
`}
` `
export const LinkButton = styled('button')` export const LinkButton = styled('button')`