78 lines
1.9 KiB
Plaintext
78 lines
1.9 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 下方引入的为Tuniao UI的集成样式文件,为scss预处理器,其中包含了一些"tn-"开头的自定义变量
|
||
* 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
|
||
* Tuniao UI自定义的css类名和scss变量,均以"tn-"开头,不会造成冲突,请放心使用
|
||
*/
|
||
.tn-toast.data-v-37b79408 {
|
||
height: auto;
|
||
background-color: rgba(0, 0, 0, 0.4);
|
||
border-radius: 10rpx;
|
||
opacity: 0;
|
||
position: fixed;
|
||
left: 50%;
|
||
top: 48%;
|
||
-webkit-transform: translate(-50%, -50%);
|
||
transform: translate(-50%, -50%);
|
||
transition: 0.3 ease-in-out;
|
||
transition-property: opacity, visibility;
|
||
display: flex;
|
||
align-items: center;
|
||
flex-direction: column;
|
||
padding: 20rpx 20rpx 20rpx 20rpx;
|
||
box-sizing: border-box;
|
||
}
|
||
.tn-toast--show.data-v-37b79408 {
|
||
opacity: 1;
|
||
}
|
||
.tn-toast--show.tn-toast--padding.data-v-37b79408 {
|
||
padding-top: 50rpx !important;
|
||
padding-bottom: 50rpx !important;
|
||
}
|
||
.tn-toast--show.tn-toast--unicon.data-v-37b79408 {
|
||
padding: 20rpx 20rpx 20rpx 20rpx !important;
|
||
}
|
||
.tn-toast__img.data-v-37b79408 {
|
||
width: 120rpx;
|
||
height: 120rpx;
|
||
display: block;
|
||
}
|
||
.tn-toast__text.data-v-37b79408 {
|
||
font-size: 28rpx;
|
||
line-height: 28rpx;
|
||
color: #ffffff;
|
||
text-align: center;
|
||
}
|
||
.tn-toast__icon.data-v-37b79408 {
|
||
color: #FFFFFF;
|
||
font-size: 64rpx;
|
||
}
|
||
.tn-toast__content.data-v-37b79408 {
|
||
padding-top: 10rpx;
|
||
font-size: 24rpx !important;
|
||
}
|
||
.tn-toast--unicon.data-v-37b79408 {
|
||
padding: 0;
|
||
word-break: break-all;
|
||
}
|
||
.tn-toast--padding.data-v-37b79408 {
|
||
padding: 10rpx;
|
||
}
|
||
.tn-toast__mask.data-v-37b79408 {
|
||
width: 100%;
|
||
height: 100%;
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
border: 0;
|
||
background-color: rgba(0, 0, 0, 0);
|
||
transition: 0.3s ease-in-out;
|
||
transition-property: opacity;
|
||
opacity: 0;
|
||
}
|
||
.tn-toast__mask--show.data-v-37b79408 {
|
||
height: 100%;
|
||
opacity: 1;
|
||
}
|