This commit is contained in:
MeloHG 2024-01-05 15:25:13 +08:00
commit a2224510b6
2 changed files with 5 additions and 1 deletions

View File

@ -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)
}

View File

@ -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);
}
}
}