Hi, I’m trying to increase the width of the FieldText, but I seems to couldn’t find a proper way, it’s not mentioned in AtlasKit docs. But in ADG3, text field should be available in different width.
I have tried with styled-components extends.
const LongFieldText = FieldText.extend`
"max-width": 500;
`
But I got error as a result of that:
Uncaught TypeError: k.default.extend is not a function
What I can do? The last resort I would try would be specify a css class, and try to overwrite it, but the random generated class might get in the way as well. Furthermore, this is not recommended by styled-component as well (styled-components: Advanced Usage)
