DigitalRiver / react-atlas

Composable React components with CSS Modules.
http://digitalriver.github.io/react-atlas/
MIT License
38 stars 25 forks source link

Dropdown: Custom width with leftLabel causes display issue #918

Closed Darper closed 5 years ago

Darper commented 5 years ago

Dropdown container isn't restricted by custom width of leftLabel prop is applied. This causes the caret to appear outside the TextField border.

Sample Code:

<Dropdown leftLabel style={{width: "200px"}} name="basicDropdown" id="basicDropdown">
    <Option value="true" text="Yes" />
    <Option value="false" text="No" />
</Dropdown>

image