Add prettier.

This commit is contained in:
Paul
2021-06-18 15:57:08 +01:00
parent 34a4bccbbe
commit 0cba2b362d
20 changed files with 222 additions and 168 deletions

View File

@@ -6,24 +6,24 @@ interface Props {
}
export default styled.button<Props>`
z-index: 1;
padding: 8px;
font-size: 16px;
text-align: center;
z-index: 1;
padding: 8px;
font-size: 16px;
text-align: center;
transition: 0.2s ease opacity;
transition: 0.2s ease background-color;
transition: 0.2s ease opacity;
transition: 0.2s ease background-color;
background: var(--primary-background);
background: var(--primary-background);
color: var(--foreground);
border-radius: 6px;
cursor: pointer;
border-radius: 6px;
cursor: pointer;
border: none;
&:hover {
background: var(--secondary-header);
}
&:hover {
background: var(--secondary-header);
}
&:disabled {
background: var(--primary-background);
@@ -33,33 +33,37 @@ export default styled.button<Props>`
background: var(--secondary-background);
}
${props => props.contrast && css`
padding: 4px 8px;
background: var(--secondary-header);
&:hover {
background: var(--primary-header);
}
&:disabled {
${(props) =>
props.contrast &&
css`
padding: 4px 8px;
background: var(--secondary-header);
}
&:active {
background: var(--secondary-background);
}
`}
&:hover {
background: var(--primary-header);
}
${props => props.error && css`
color: white;
background: var(--error);
&:disabled {
background: var(--secondary-header);
}
&:hover {
filter: brightness(1.2)
}
&:active {
background: var(--secondary-background);
}
`}
&:disabled {
${(props) =>
props.error &&
css`
color: white;
background: var(--error);
}
`}
&:hover {
filter: brightness(1.2);
}
&:disabled {
background: var(--error);
}
`}
`;