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:
@ -41,7 +41,7 @@ const StyledColorSchemeBackground = styled.div<
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding-left: ${({ theme }) => theme.spacing(6)};
|
padding-left: ${({ theme }) => theme.spacing(6)};
|
||||||
padding-top: ${({ theme }) => theme.spacing(6)};
|
padding-top: ${({ theme }) => theme.spacing(6)};
|
||||||
width: 120px;
|
width: 160px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledColorSchemeContent = styled(motion.div)<
|
const StyledColorSchemeContent = styled(motion.div)<
|
||||||
@ -120,7 +120,7 @@ const ColorSchemeSegment = ({
|
|||||||
|
|
||||||
const StyledContainer = styled.div`
|
const StyledContainer = styled.div`
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 120px;
|
width: 160px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledMixedColorSchemeSegment = styled.div`
|
const StyledMixedColorSchemeSegment = styled.div`
|
||||||
@ -130,7 +130,7 @@ const StyledMixedColorSchemeSegment = styled.div`
|
|||||||
height: 80px;
|
height: 80px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 120px;
|
width: 160px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const StyledCheckmarkContainer = styled(motion.div)`
|
const StyledCheckmarkContainer = styled(motion.div)`
|
||||||
|
|||||||
Reference in New Issue
Block a user