mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
feat(ui): boards are only punch-you-in-the-face-purple if selected
This commit is contained in:
parent
1e3cebbf42
commit
a481607d3f
@ -240,9 +240,12 @@ const GalleryBoard = memo(
|
|||||||
w: 'full',
|
w: 'full',
|
||||||
maxW: 'full',
|
maxW: 'full',
|
||||||
borderBottomRadius: 'base',
|
borderBottomRadius: 'base',
|
||||||
bg: 'accent.400',
|
bg: isSelected ? 'accent.400' : 'base.600',
|
||||||
color: isSelected ? 'base.50' : 'base.100',
|
color: isSelected ? 'base.50' : 'base.100',
|
||||||
_dark: { color: 'base.200', bg: 'accent.500' },
|
_dark: {
|
||||||
|
bg: isSelected ? 'accent.500' : 'base.600',
|
||||||
|
color: isSelected ? 'base.50' : 'base.100',
|
||||||
|
},
|
||||||
lineHeight: 'short',
|
lineHeight: 'short',
|
||||||
fontSize: 'xs',
|
fontSize: 'xs',
|
||||||
}}
|
}}
|
||||||
|
Loading…
Reference in New Issue
Block a user