离子4模态背景

时间:2018-11-19 00:41:52

标签: css angular ionic-framework

我正在尝试修正我的模式在出现时的工作方式。

当屏幕尺寸很大时,由于最小高度css,它具有半透明的背景。我不介意最小高度,我只希望它们都是白色的。

通常会创建然后显示:

this.modalCtrl.create({
  component: AddCommentPage,
  componentProps: { id: this.place.id }
}).then((element) => element.present());

这是大屏幕时的视图:

Large Image

当它很小时(应为全屏显示):

Small Image

1 个答案:

答案 0 :(得分:0)

我通过将以下代码添加到我的.scss文件中来修复它:

  .modal-wrapper {
    background-color: white;
  }
相关问题