mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-25 09:13:22 +03:00
fix: Update theme card width (#7147)
> [!Note] > This PR solves the issue #7119 > Updated the width of Style Color card from ` 120px `to ` 160px` for better UI
This commit is contained in:
parent
e566b8d204
commit
7967d2d643
@ -41,7 +41,7 @@ const StyledColorSchemeBackground = styled.div<
|
||||
overflow: hidden;
|
||||
padding-left: ${({ theme }) => theme.spacing(6)};
|
||||
padding-top: ${({ theme }) => theme.spacing(6)};
|
||||
width: 120px;
|
||||
width: 160px;
|
||||
`;
|
||||
|
||||
const StyledColorSchemeContent = styled(motion.div)<
|
||||
@ -120,7 +120,7 @@ const ColorSchemeSegment = ({
|
||||
|
||||
const StyledContainer = styled.div`
|
||||
position: relative;
|
||||
width: 120px;
|
||||
width: 160px;
|
||||
`;
|
||||
|
||||
const StyledMixedColorSchemeSegment = styled.div`
|
||||
@ -130,7 +130,7 @@ const StyledMixedColorSchemeSegment = styled.div`
|
||||
height: 80px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
width: 120px;
|
||||
width: 160px;
|
||||
`;
|
||||
|
||||
const StyledCheckmarkContainer = styled(motion.div)`
|
||||
|
Loading…
Reference in New Issue
Block a user