Format and automatically fix linted code.

This commit is contained in:
Paul
2021-07-10 15:57:29 +01:00
parent 392cb23541
commit 7586b365fe
87 changed files with 789 additions and 563 deletions

View File

@@ -55,7 +55,11 @@ const SwatchesBase = styled.div`
div {
width: 8px;
height: 68px;
background: linear-gradient(to right, var(--primary-background), transparent);
background: linear-gradient(
to right,
var(--primary-background),
transparent
);
}
}
`;
@@ -127,8 +131,10 @@ export default function ColourSwatches({ value, onChange }: Props) {
<Palette size={32} />
</Swatch>
<div class="overlay"><div /></div>
<div class="overlay">
<div />
</div>
<Rows>
{presets.map((row, i) => (
<div key={i}>
@@ -144,8 +150,6 @@ export default function ColourSwatches({ value, onChange }: Props) {
</div>
))}
</Rows>
</SwatchesBase>
);
}