如何更改 sweetalert 的字体系列

how to change font family of sweetalert

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

swal({
            title: "Are you sure?",
            text: "Your will not be able to recover this imaginary file!",
            type: "warning",
            showCancelButton: true,
            confirmButtonColor: "#DD6B55",
            confirmButtonText: "Yes, delete it!",
            cancelButtonText: "No, cancel plx!",
            closeOnConfirm: false,
            closeOnCancel: false
        },

已列出配置选项 here。它们似乎不包含更改字体的选项。

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

将此添加到 css!

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