react-native-css-modules
react-native-css-modules copied to clipboard
[bug] border-bottom doesn't work
it's okay for using
border:var(--header-background-border);
but if turn to be
border-bottom:var(--header-background-border);
immediately doesn't work
Thanks @brain00021 . This caused by a limitation in React Native, which then means that the CSS parser can not support it (https://github.com/styled-components/css-to-react-native/pull/95)
I know that it is not clean, but you need to use border-bottom-width
, border-bottom-color
and border-bottom-style
as separate properties instead.