Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
fix(error): fix content scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Nov 14, 2016
1 parent 7c2fb59 commit 3b82465
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/ion-dev.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions src/dev-client/sass/_diagnostics.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@
#ion-diagnostics {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: $z-index-diagnostics;

width: 100%;
height: auto;
min-height: 100%;

margin: 0;
padding: 0;

Expand All @@ -34,6 +32,11 @@
}

.ion-diagnostics-content {
position: relative;
padding: 0 0 30px 0;
width: 100%;
height: 100%;

overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
Expand Down

0 comments on commit 3b82465

Please sign in to comment.