style(ActionSheet): improve text size adjust (#6175)

This commit is contained in:
neverland
2020-04-29 20:12:30 +08:00
committed by GitHub
parent ba67c7bf23
commit 0a3cafcedb
3 changed files with 15 additions and 11 deletions
+4 -3
View File
@@ -121,11 +121,12 @@ function ActionSheet(
function CancelText() {
if (cancelText) {
return (
return [
<div class={bem('gap')} />,
<button type="button" class={bem('cancel')} onClick={onCancel}>
{cancelText}
</button>
);
</button>,
];
}
}