-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support for yandesbrowser #127
Comments
Can someone tell me the output of |
do you mean this? |
Do you have an example how e.g. const style = {
display: 'flex',
flex: 1,
justifyContent: 'flex-start'
} is prefixed with a Yandex browser? It seems like it is already recognized as a Webkit-based browser... |
adding flex gave me this: { |
Ok got it. Looks like it detects the old flexbox spec while we would need to use the new one. We can force it to use the new one, but that might crash old Yandex versions. There's no other way to do it apparently, as we do not have a version mapping for those Yandex features on caniuse. |
Hi i have issues when using yandexbrowser, im using your library through Radium.
when trying to load my website all the flex tags are not used so if something should be display: 'flex'
it wont appear in the browser.
yandex is built on top of chromium.
adding 'yandexbrowser' to webkit in vendorprefixes and to chrome array in browsers fixed most of the problems.
is there any way you could add support for it?
The text was updated successfully, but these errors were encountered: