123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- .cl-toast {
- display: flex;
- align-items: center;
- flex-direction: column;
- min-width: auto;
- max-width: 80%;
- box-sizing: border-box;
- border-radius: 10rpx;
- position: fixed;
- left: 50%;
- transform: translate(-50%, -50%);
- overflow: hidden;
- padding: 14rpx;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 3020;
- opacity: 0;
- pointer-events: none;
- transition: opacity 0.3s;
- &__icon {
- padding: 20rpx 50rpx;
- text {
- font-size: 70rpx;
- color: #eee;
- }
- }
- &__content {
- padding: 0;
- font-size: 26rpx;
- line-height: 36rpx;
- color: #fff;
- text-align: center;
- }
- &--default {
- background-color: rgba(0, 0, 0, 0.5);
- }
- &--primary {
- background-color: $cl-color-primary;
- }
- &--success {
- background-color: $cl-color-success;
- }
- &--error {
- background-color: $cl-color-error;
- }
- &--warning {
- background-color: $cl-color-warning;
- }
- &--info {
- background-color: $cl-color-info;
- }
- &.is-show {
- opacity: 1;
- pointer-events: auto;
- }
- &.is-top {
- top: 150rpx;
- }
- &.is-middle {
- top: 50%;
- }
- &.is-bottom {
- bottom: 150rpx;
- }
- &.is-icon {
- padding-bottom: 30rpx;
- }
- }
|