[improvement] Dialog: centered in screen (#1782)

This commit is contained in:
neverland 2019-07-19 17:06:15 +08:00 committed by GitHub
parent 4586446e83
commit cbaa83a416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View File

@ -46,6 +46,7 @@
</van-button>
<van-dialog
use-slot
title="标题"
show="{{ show }}"
show-cancel-button
bind:close="onClose"

View File

@ -84,6 +84,7 @@ Dialog.confirm({
```html
<van-dialog
use-slot
title="标题"
show="{{ show }}"
show-cancel-button
confirm-button-open-type="getUserInfo"

View File

@ -1,6 +1,7 @@
@import '../common/style/var.less';
.van-dialog {
top: 45% !important;
width: 85%;
overflow: hidden;
font-size: 16px;
@ -10,6 +11,7 @@
&__header {
padding-top: 25px;
font-weight: 500;
line-height: 24px;
text-align: center;
&--isolated {
@ -22,7 +24,7 @@
padding: 25px;
overflow-y: auto;
font-size: 14px;
line-height: 1.5;
line-height: 20px;
text-align: center;
-webkit-overflow-scrolling: touch;