fine bg color change for toast

This commit is contained in:
ogerly 2022-02-25 15:39:04 +01:00
parent 4ea2255cb7
commit 3da6582a9c
3 changed files with 1 additions and 8 deletions

View File

@ -76,7 +76,7 @@
.b-toast-success .toast .toast-header {
color: #155724;
background-color: rgba(212,237,218,.85);
background-color: rgba(212,237,218,.58);
border-bottom-color: rgba(195,230,203,.85);
}
.b-toast-success .toast .toast-body{

View File

@ -4,16 +4,12 @@ export const toasters = {
this.toast(message, {
title: this.$t('success'),
variant: 'success',
headerClass: 'gdd-toaster-text-success',
bodyClass: 'gdd-toaster-text-success',
})
},
toastError(message) {
this.toast(message, {
title: this.$t('error.error'),
variant: 'danger',
headerClass: 'gdd-toaster-text-danger',
bodyClass: 'gdd-toaster-text-danger',
})
},
toast(message, options) {

View File

@ -115,8 +115,5 @@ export default {
})
},
},
created() {
this.toastSuccess(this.$t('error.no-account'))
},
}
</script>