如何更改通告程序角度样式并在其中添加图标

时间:2019-07-10 06:53:00

标签: angular angular7 notificationservices

我在angular 7项目中使用angular-notifier程序包。我在路由器出口之前在app.component.html中添加了它的选择器。 我在导入的app.module.ts中添加其配置。 我不能接受其中的一些风格。例如添加图标,或将\ n更改为下一行,等等

1 个答案:

答案 0 :(得分:1)

尝试使用mdbootsatap软件包

 <div class="toast" role="alert" aria-live="assertive" aria-atomic="true">
          <div class="toast-header">
            <svg class=" rounded mr-2" width="20" height="20" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid slice"
              focusable="false" role="img">
              <rect fill="#007aff" width="100%" height="100%" /></svg>
            <strong class="mr-auto">Bootstrap</strong>
            <small class="text-muted">11 mins ago</small>
            <button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
              <span aria-hidden="true">&times;</span>
            </button>
          </div>
          <div class="toast-body">
            Hello, world! This is a toast message.
          </div>
        </div>