We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0065a6 commit 6b98dbaCopy full SHA for 6b98dba
invokeai/frontend/web/src/features/controlLayers/components/LayerCommon/LayerWrapper.tsx
@@ -10,7 +10,16 @@ type Props = PropsWithChildren<{
10
11
export const LayerWrapper = memo(({ onClick, borderColor, children }: Props) => {
12
return (
13
- <Flex gap={2} onClick={onClick} bg={borderColor} px={2} borderRadius="base" py="1px" transitionProperty="all" transitionDuration="0.2s">
+ <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
+ >
23
<Flex flexDir="column" w="full" bg="base.850" borderRadius="base">
24
{children}
25
</Flex>
0 commit comments