We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
to right
right
1.1.37-canary.21+2283ed098
Darwin 23.6.0 arm64 arm
background-image: linear-gradient(to right, rgb(69 177 228), rgb(4 14 113));
is replaced to:
background-image: linear-gradient(right, #45b1e4, #040e71);
And right is a nonstandard direction, and break the styles.
Keep the standard direction.
No response
The text was updated successfully, but these errors were encountered:
Another one incorrect:
background: linear-gradient( 90deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 255, 1) 26%, rgba(149, 237, 255, 1) 100% );
It's transformed incorrectly to
background: linear-gradient(90deg, #fff, 0%, #f0f0ff, 26%, #95edff, 100%) fixed;
Commas are incorrect. Should be:
background: linear-gradient(90deg, #fff 0%, #f0f0ff 26%, #95edff 100%) fixed;
Sorry, something went wrong.
No branches or pull requests
What version of Bun is running?
1.1.37-canary.21+2283ed098
What platform is your computer?
Darwin 23.6.0 arm64 arm
What steps can reproduce the bug?
is replaced to:
And
right
is a nonstandard direction, and break the styles.What is the expected behavior?
Keep the standard direction.
What do you see instead?
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: