You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you work with a tab view, the ion-content seems to have 1px padding too much on the bottom. Scroll all the way down in my JSFiddle and you will see 1 pixel line that is red (which is ion-content). The screenshot below also shows it:
I hunted this issue down to two lines of code in _scaffolding.scss, lines 65-69 in beta 14:
// Hide the top border if any
margin-top: -1px;
// Prevents any distortion of lines
padding-top:1px;
Removing both of these lines solves my issue. However, the comments suggest there is a very good reason for having these lines in place (which does not show in my specific scenario). This withholds me from simply removing the lines and submitting a pull request. Could someone please elaborate on this?
The text was updated successfully, but these errors were encountered:
Type: bug
Platform: all
JSFiddle: http://jsfiddle.net/jasperkuperus/yk62zsxv/1/
If you work with a tab view, the
ion-content
seems to have 1px padding too much on the bottom. Scroll all the way down in my JSFiddle and you will see 1 pixel line that is red (which ision-content
). The screenshot below also shows it:I hunted this issue down to two lines of code in
_scaffolding.scss
, lines 65-69 in beta 14:Removing both of these lines solves my issue. However, the comments suggest there is a very good reason for having these lines in place (which does not show in my specific scenario). This withholds me from simply removing the lines and submitting a pull request. Could someone please elaborate on this?
The text was updated successfully, but these errors were encountered: