Skip to content

Commit c5b948b

Browse files
psychedelicioushipsterusername
authored andcommitted
feat(ui): fade layer selection color
1 parent 44ecdda commit c5b948b

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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">
13+
<Flex gap={2} onClick={onClick} bg={borderColor} px={2} borderRadius="base" py="1px" transitionProperty="all" transitionDuration="0.2s">
1414
<Flex flexDir="column" w="full" bg="base.850" borderRadius="base">
1515
{children}
1616
</Flex>

0 commit comments

Comments
 (0)