vant/packages/vant-css/src/dialog.css
2018-10-09 17:32:01 +08:00

70 lines
1002 B
CSS

@import './common/var.css';
.van-dialog {
position: fixed;
top: 50%;
left: 50%;
width: 85%;
font-size: 16px;
overflow: hidden;
transition: .3s;
border-radius: 4px;
background-color: $white;
transform: translate3d(-50%, -50%, 0);
&__header {
font-weight: 500;
padding-top: 25px;
text-align: center;
&--isolated {
padding: 25px 0;
}
}
&__message {
padding: 25px;
font-size: 14px;
line-height: 1.5;
&--has-title {
padding-top: 12px;
color: $gray-darker;
}
}
&__footer {
overflow: hidden;
user-select: none;
&--buttons {
display: flex;
.van-button {
flex: 1;
}
}
}
.van-button {
border: 0;
}
&__confirm {
&,
&:active {
color: $blue;
}
}
&-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);
}
}