甜蜜警报 2 的自定义样式

Custom styling for Sweet alert 2

我定义了一个 className 来自定义 sweetAlert2,但显然样式不适用于 sweet alert。我将所有名称都命名为 class,但似乎没有任何效果。问题可能出在这个包的 css 主文件上吗?

swal.fire({
   title: Welcome,
   className: styleTitle
});

CSS

.styleTitle{
   font-size: 25px;
}

我在文档中找到 this 它可能对您有帮助。

显然您必须定义 customClass 而不是 className

Here就是一个例子。