如何更改sweetalert的字体家族

时间:2019-07-17 15:29:48

标签: javascript jquery sweetalert

如何在sweetalert中更改字体系列?谢谢

if(this.state.cartItems[sameItem].quantity < 10){
    this.state.cartItems[sameItem].quantity += 1;
    this.setState({cartItems});
 }

2 个答案:

答案 0 :(得分:0)

配置选项在here中列出。它们似乎没有包含用于更改字体的选项。

但是,SweetAlert弹出窗口中涉及的所有元素都具有特定于SweetAlert的类,因此您应该能够通过CSS设置字体。 SweetAlert文档在Theming下列出了一些关键类和示例。

答案 1 :(得分:-1)

将此添加到 css!

    .swal2-popup {
  font-size: 1.6rem !important;
  font-family: Georgia, serif;
}