大家好,我正在使用打字稿在 Angular 6 中实现 Ngx-toastr,我的问题是我无法让它变得像我想要的那样漂亮,因为我不知道在那个ngx-toastr类上覆盖了哪个 css,我在Style上写了一些 css 。 css文件ngx-toastr,我想要border-radius: 15px;
,但内部部分没有采用圆角,border-radius: 15px;
我从互联网上搜索了许多资源,但没有得到正确的输出,我无法更改其他 toastr,因为在我的项目中,我不想要大约350 多个组件使用方法更改每个文件,这就是为什么我要自定义现有的 toastr CSS。
这是我的 CSS 代码
.toast-container .ngx-toastr {
position: relative;
overflow: hidden;
margin: 0 0 6px;
padding: 15px 15px 15px 50px;
width: 300px;
border-radius: 15px !important;
background-position: 15px center;
background-repeat: no-repeat;
background-size: 24px;
box-shadow: 0 0 12px #999;
color: #fff;
border-image-source: linerar-gradient(red,purple) !important;
border: 4px solid green !important;
border-image-source: linear-gradient(red, purple) !important;
border-image-slice: 20 !important;
}
.toast-success {
background-color: #51a351;
}
但是我的期望是,如果您想检查,我希望与这张图片中的相同,然后访问此链接并单击RESET按钮以显示 toastr单击此处访问该站点
这是我的StackBlitz 代码