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
Are we able to edit the styling of the default this.$toast.success('message') and add icons?
this.$toast.success('message')
OR
Do we have to make a custom toast to accomplish these things?
The text was updated successfully, but these errors were encountered:
@MaxWeisen You can customize the styling by overriding the style but to add an icon for an existing type you need to register a custom toast.
Here is an example of overriding the success toast:
.toasted-container .toasted.toasted-primary.success { color: #267526; background: #DFF7DC; }
Sorry, something went wrong.
No branches or pull requests
Are we able to edit the styling of the default
this.$toast.success('message')
and add icons?OR
Do we have to make a custom toast to accomplish these things?
The text was updated successfully, but these errors were encountered: