fix: empty composite field input (#8451)

Fixes: #7225

---------

Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
This commit is contained in:
Harsh Singh
2024-11-20 20:09:55 +05:30
committed by GitHub
parent 24c0b0f873
commit 96c8673278
2 changed files with 16 additions and 7 deletions

View File

@ -36,6 +36,10 @@ const StyledInputContainer = styled.div`
box-sizing: border-box;
position: relative;
width: 100%;
&:not(:first-of-type) {
padding: ${({ theme }) => theme.spacing(1)};
}
`;
const StyledRightContainer = styled.div`