eolant / vuetify-toast-snackbar

Basic Vue toast service that uses Vuetify Snackbar component.
MIT License
127 stars 36 forks source link

abnormal style ? #56

Open chenguzhen87 opened 3 years ago

chenguzhen87 commented 3 years ago

vuetify-2.5.4 vuetify-toast-snackbar-0.6.1 image

chenguzhen87 commented 3 years ago

I solved below

Vue.use(VuetifyToast, {
  $vuetify: vuetify.framework,
  x: "center",
  y: "top",
  classes: ["vuetify-toast"],
  icon: "mdi-alert-circle",
  dismissable: false,
  showClose: true,
  closeIcon: "mdi-close",
  closeColor: "#fff"
});

.vuetify-toast .v-snack__content {
  display: flex;
  align-items: center;
}