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 44ecdda commit c5b948bCopy full SHA for c5b948b
invokeai/frontend/web/src/features/controlLayers/components/LayerCommon/LayerWrapper.tsx
@@ -10,7 +10,7 @@ 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">
+ <Flex gap={2} onClick={onClick} bg={borderColor} px={2} borderRadius="base" py="1px" transitionProperty="all" transitionDuration="0.2s">
14
<Flex flexDir="column" w="full" bg="base.850" borderRadius="base">
15
{children}
16
</Flex>
0 commit comments