-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
Description
Current behavior:
<TextInput style={css`border-bottom: 1px solid gold;`} />
This does not apply any styles to the TextInput
's bottom border. This does not work for other specific sides either like border-top, left or right
This works though:
<TextInput style={css` border-bottom-color: red; border-bottom-width: 1px;`} />
Using just border
also works.
<TextInput style={css`border: 1px solid gold;`} />
Tested on the following versions of react, react-native, emotion and emotion/native
react
version: 16.8, 16.9react-native
version: 0.59.8emotion/core
version: 10.0.14, 10.0.17emotion/native
version: 10.0.14