我正在使用ngx-toastr库。我正在启动位于屏幕顶部中心的消息,如下所示:
@Injectable()
export class MessageService {
constructor(private toastrService: ToastrService) { }
showErrorMessage(message: string) {
this.toastrService.error(message, undefined, {
positionClass: 'toast-top-center'
});
}
}
问题是吐司显示在顶部没有任何边距:
我该如何解决这个问题?