ym-mint-ui
Version:
750px for Mint UI
54 lines (53 loc) • 1.2 kB
CSS
/* Cell Component */
/* Header Component */
/* Button Component */
/* Tab Item Component */
/* Tabbar Component */
/* Navbar Component */
/* Checklist Component */
/* Radio Component */
/* Range Component */
/* z-index */
.mint-toast {
position: fixed;
max-width: 80%;
border-radius: 15px;
background: rgba(0, 0, 0, 0.7);
color: #fff;
box-sizing: border-box;
text-align: center;
z-index: 10000;
-webkit-transition: opacity .3s linear;
transition: opacity .3s linear
}
.mint-toast.is-placebottom {
bottom: 100px;
left: 50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0)
}
.mint-toast.is-placemiddle {
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%)
}
.mint-toast.is-placetop {
top: 100px;
left: 50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0)
}
.mint-toast-icon {
display: block;
text-align: center;
font-size: 112px
}
.mint-toast-text {
font-size: 28px;
display: block;
text-align: center
}
.mint-toast-pop-enter, .mint-toast-pop-leave-active {
opacity: 0
}