mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
73 lines
1.0 KiB
Plaintext
73 lines
1.0 KiB
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-dialog {
|
|
width: 85%;
|
|
font-size: 16px;
|
|
overflow: hidden;
|
|
border-radius: 4px;
|
|
background-color: @white;
|
|
|
|
&__header {
|
|
font-weight: 500;
|
|
padding-top: 25px;
|
|
text-align: center;
|
|
|
|
&--isolated {
|
|
padding: 25px 0;
|
|
}
|
|
}
|
|
|
|
&__message {
|
|
padding: 25px;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
text-align: center;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
&--has-title {
|
|
padding-top: 12px;
|
|
color: @gray-darker;
|
|
}
|
|
|
|
&--left {
|
|
text-align: left;
|
|
}
|
|
|
|
&--right {
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
&__footer {
|
|
display: flex;
|
|
}
|
|
|
|
&__button {
|
|
flex: 1;
|
|
}
|
|
|
|
&__confirm,
|
|
&__cancel {
|
|
border: 0 !important;
|
|
}
|
|
|
|
&__confirm {
|
|
&,
|
|
&:active {
|
|
color: @blue !important;
|
|
}
|
|
}
|
|
|
|
&-bounce-enter {
|
|
opacity: 0;
|
|
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
|
}
|
|
|
|
&-bounce-leave-active {
|
|
opacity: 0;
|
|
transform: translate3d(-50%, -50%, 0) scale(0.9);
|
|
}
|
|
}
|