如何删除离子模态底部的多余空白?

时间:2019-01-10 00:40:47

标签: angular css3 ionic-framework ionic2 ionic3

我的Ionic应用程序中有一个页面,单击该按钮可以打开Ionic模态。当我在模式的文本框中键入内容时,它将在模式的底部添加一个多余的空格。此问题仅在移动设备中存在。

我需要从模态中删除不需要的空格。我在这里提供现场演示。 https://stackblitz.com/edit/ionic-dbj2mf?embed=1&file=app/main.ts

步骤1: Typing something in the text box of the modal

步骤2: added an unwanted white space when typing

1 个答案:

答案 0 :(得分:0)

尝试将以下代码添加到app.scss

.scroll-content { 
   padding-bottom: 0 !important; 
}