diff --git a/frontend/src/assets/scss/gradido.scss b/frontend/src/assets/scss/gradido.scss index bc88acd6d..9bc3231c4 100644 --- a/frontend/src/assets/scss/gradido.scss +++ b/frontend/src/assets/scss/gradido.scss @@ -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{ diff --git a/frontend/src/mixins/toaster.js b/frontend/src/mixins/toaster.js index bf3f0627c..4464a2cc9 100644 --- a/frontend/src/mixins/toaster.js +++ b/frontend/src/mixins/toaster.js @@ -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) { diff --git a/frontend/src/views/Pages/Login.vue b/frontend/src/views/Pages/Login.vue index d33f0d949..42bf7cc01 100755 --- a/frontend/src/views/Pages/Login.vue +++ b/frontend/src/views/Pages/Login.vue @@ -115,8 +115,5 @@ export default { }) }, }, - created() { - this.toastSuccess(this.$t('error.no-account')) - }, }