mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-22 21:50:43 +03:00
fix: Toggle not visible in light mode (#7322)
> [!Note] > - This PR solves the issue #7321 > - Added a minor fix in color background of toggle --------- Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
parent
62fe1d0e88
commit
8350e7d808
@ -16,7 +16,7 @@ type ContainerProps = {
|
||||
const StyledContainer = styled.div<ContainerProps>`
|
||||
align-items: center;
|
||||
background-color: ${({ theme, isOn, color }) =>
|
||||
isOn ? (color ?? theme.color.blue) : theme.background.quaternary};
|
||||
isOn ? (color ?? theme.color.blue) : theme.background.transparent.medium};
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
|
Loading…
Reference in New Issue
Block a user