examunity / bootstrap-rn

Bootstrap components for React Native
MIT License
2 stars 0 forks source link

Border color horizontal not applied #29

Closed markusjwetzel closed 2 years ago

markusjwetzel commented 2 years ago

For some reason the left and right border color of the button variants is not applied.

There is a base style border: $btn-border-width solid transparent; for all buttons, but then there is another style border-color: ${value}; for each button variant, which should overwrite the button color transparent. But this only happens for the top and bottom border, not for the left and right border.

markusjwetzel commented 2 years ago

The issue is related to react-native issue #19981: https://github.com/facebook/react-native/issues/19981

We can work around this issue if we strictly set borderBottomColor, borderLeftColor, borderRightColor and borderTopColor instead of borderColor.