-
Hi all, I'm looking to resize specific inputs inside of a tuiGroup. Currently I have a country code dropdown with a phone number & I'm trying to reduce the size of the dropdown so that the phone number input takes a majority of the space. I've tried messing around with the "adaptive", "orientation" & "size" inputs but to no avail. If anyone has any advice, it'd be much appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It's a flex container. You can either set |
Beta Was this translation helpful? Give feedback.
It's a flex container. You can either set
flex: 1
for the country selection and, for example,flex: 5
for the phone number or just definemax-width
for the country selector so the rest is taken up by the number.