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
I cannot change box shadow and it's limited to blue color, please let me choose my own box shadow color. thanks!
The text was updated successfully, but these errors were encountered:
You can add it as a property when calling the function.
setTimeout(function() { Toastify({ text: "Highly customizable", gravity: "bottom", position: 'left', close: true, style: { background: "linear-gradient(to right, #ff5f6d, #ffc371)", box-shadow: 5px 10px; } }).showToast(); }, 3000);
Sorry, something went wrong.
You can add it as a property when calling the function. setTimeout(function() { Toastify({ text: "Highly customizable", gravity: "bottom", position: 'left', close: true, style: { background: "linear-gradient(to right, #ff5f6d, #ffc371)", box-shadow: 5px 10px; } }).showToast(); }, 3000);
This gives me Uncaught SyntaxError: Unexpected token '-' (at ....)
Uncaught SyntaxError: Unexpected token '-' (at ....)
I am trying to use border-radius and it throws the same error.
@GGyll when applying css styles from JS, we need to switch from kebab case to camel case and so 'box-shadow' becomes boxShadow
No branches or pull requests
I cannot change box shadow and it's limited to blue color, please let me choose my own box shadow color. thanks!
The text was updated successfully, but these errors were encountered: