Skip to content

Commit 6b98dba

Browse files
psychedelicioushipsterusername
authored andcommitted
chore(ui): lint
1 parent c0065a6 commit 6b98dba

File tree

1 file changed

+10
-1
lines changed
  • invokeai/frontend/web/src/features/controlLayers/components/LayerCommon

1 file changed

+10
-1
lines changed

invokeai/frontend/web/src/features/controlLayers/components/LayerCommon/LayerWrapper.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ type Props = PropsWithChildren<{
1010

1111
export const LayerWrapper = memo(({ onClick, borderColor, children }: Props) => {
1212
return (
13-
<Flex gap={2} onClick={onClick} bg={borderColor} px={2} borderRadius="base" py="1px" transitionProperty="all" transitionDuration="0.2s">
13+
<Flex
14+
gap={2}
15+
onClick={onClick}
16+
bg={borderColor}
17+
px={2}
18+
borderRadius="base"
19+
py="1px"
20+
transitionProperty="all"
21+
transitionDuration="0.2s"
22+
>
1423
<Flex flexDir="column" w="full" bg="base.850" borderRadius="base">
1524
{children}
1625
</Flex>

0 commit comments

Comments
 (0)