如何更改甜蜜警报中按钮的大小

how to change size of button in sweet alert

如何更改甜蜜提醒中按钮的大小。

密码是:

swal({
      title: `Are you sure to delete this news posted by ${news.users.user_name} ?`,
      text: `Once deleted, you will not be able to recover this post!`,
      icon: "warning",
      buttons: true,
      dangerMode: true,
    }).then(willDelete => {
      if (willDelete) {
        this.props.deleteNewsPosts(news._id)
      } else {
        swal(`This news is safe!`)
      }
    })
  } 

尝试在 .swal-button class 上使用 CSS(如果您希望它更具体,您可以将 classname 属性 传递给该警报或此处所述的按钮:https://sweetalert.js.org/docs/#configuration)