Merge branch 'dev' of https://github.com/didi/mand-mobile into dev
This commit is contained in:
commit
a2224510b6
|
@ -174,6 +174,7 @@ Dialog.alert = ({
|
|||
*/
|
||||
Dialog.succeed = props => {
|
||||
props.icon = 'success-color'
|
||||
props.iconSvg = true
|
||||
return Dialog.confirm(props)
|
||||
}
|
||||
|
||||
|
@ -185,6 +186,7 @@ Dialog.succeed = props => {
|
|||
*/
|
||||
Dialog.failed = props => {
|
||||
props.icon = 'warn-color'
|
||||
props.iconSvg = true
|
||||
return Dialog.confirm(props)
|
||||
}
|
||||
|
||||
|
|
|
@ -505,7 +505,9 @@ export default {
|
|||
.md-license-plate-input-container{
|
||||
&.popUp{
|
||||
background: #fff;
|
||||
padding: 20px 40px 40px;
|
||||
padding: 20px 40px 0px;
|
||||
padding-bottom: constant(safe-area-inset-bottom);
|
||||
padding-bottom: env(safe-area-inset-bottom);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue