Update double cell input width to be fixed (#946)

Fix double cell input width to be fixed
This commit is contained in:
Dev 2023-07-27 02:48:20 +00:00 committed by GitHub
parent fb1229247d
commit 13f415a859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,10 @@ const StyledContainer = styled.div`
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
input {
width: ${({ theme }) => theme.spacing(24)};
}
& > input:last-child { & > input:last-child {
border-left: 1px solid ${({ theme }) => theme.border.color.medium}; border-left: 1px solid ${({ theme }) => theme.border.color.medium};
padding-left: ${({ theme }) => theme.spacing(2)}; padding-left: ${({ theme }) => theme.spacing(2)};