@import "mixins/mixins";
@import "common/var";

// @include b(toast) {
 
// }
.el-toast {
  position: fixed;
  left: 50%;
  top: 10%;
  z-index: 9999;
  width: fit-content;
  min-width: 96px;
  min-height: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  transition: all 0.3s;
  // width: 88px;
  max-width: 70%;
  // min-height: 88px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  white-space: pre-wrap;
  text-align: center;
  word-break: break-all;
  background: rgba(0,0,0,.7);
  border-radius: 4px;
}