vue-toasted
vue-toasted copied to clipboard
Edit styling of default this.$toast.success('message') ?
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?
@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;
}