烤面包机(ngx-toastr)顶部居中对齐没有顶部边距

时间:2019-11-13 17:32:04

标签: html css angular typescript ngx-toastr

我正在使用ngx-toastr库。我正在这样启动位于屏幕顶部中央的消息:

@Injectable()
export class MessageService {

    constructor(private toastrService: ToastrService) { }

    showErrorMessage(message: string) {
         this.toastrService.error(message, undefined, {
              positionClass: 'toast-top-center'
         });
    }
}

问题在于显示的吐司没有顶部的空白:

enter image description here

我该如何解决?

2 个答案:

答案 0 :(得分:1)

style.css

添加
.toast {
    margin-top: 45px !important;
}

答案 1 :(得分:0)

即使我认为这是一个设计问题,我也在here中找到了解决方法。您只需要将以下内容放在主.css和.scss中:

.toast-top-center {
    top: 30px;
}