Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
增加 PNotify 通知字体大小的最佳方法是什么?
new PNotify({ title: "Title", text: "Some information more.", type: "notice" })
从这里
我没有看到任何内置的方法来做到这一点。您应该添加addclass: "someClass"到初始化,然后通过.someClass .ui-pnotify-text { font-size: 1.25em }将描述文本和.someClass .ui-pnotify-title { font-size: 1.25em }标题写入自定义 CSS 文件来更改字体大小。
addclass: "someClass"
.someClass .ui-pnotify-text { font-size: 1.25em }
.someClass .ui-pnotify-title { font-size: 1.25em }