File: //home/arjun/projects/buyercall/node_modules/vue-toast-notification/src/themes/sugar/icons.scss
.v-toast {
&__item {
opacity: 1;
min-height: 4em;
.v-toast__text {
padding: 1.5em 1em;
}
.v-toast__icon {
display: block;
width: 27px;
min-width: 27px;
height: 27px;
margin-left: 1em;
background: url(#{$toast-icons-path}/info.svg) no-repeat;
[dir="rtl"] & {
margin-left: unset;
margin-right: 1em;
}
}
&.v-toast__item--success .v-toast__icon {
background: url(#{$toast-icons-path}/success.svg) no-repeat;
}
&.v-toast__item--error .v-toast__icon {
background: url(#{$toast-icons-path}/error.svg) no-repeat;
}
&.v-toast__item--warning .v-toast__icon {
background: url(#{$toast-icons-path}/warning.svg) no-repeat;
}
}
}