mov-mobile
Version:
Mov - 让你感到幸福的 Vue 组件库
35 lines (33 loc) • 699 B
text/less
@import "../../style/common";
.mona-toast {
z-index: @toastZIndex;
.mona-toast-content {
border-radius: @toastBorderRadius;
padding: 12px 15px;
background: @toastBgColor;
text-align: center;
font-size: @toastFontSize;
z-index: @toastConZIndex;
color: @toastColor;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
&.success, &.error {
min-width: 120px; /*no2rem*/
}
}
.mona-toast-icon {
.success-img, .error-img {
width: @toastIconWidth;
height: @toastIconHeight;
background-size: cover;
margin: 3px auto 10px;
}
.success-img {
background-image: url(@toastSuccessIcon);
}
.error-img {
background-image: url(@toastErrorIcon);
}
}
}