Skip to content

Commit

Permalink
Make main body section scroll in two- and three- pane-apps (Resolves a…
Browse files Browse the repository at this point in the history
  • Loading branch information
adamschwartz committed Apr 10, 2014
1 parent 239d0d8 commit bbc668f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion potions/three-pane-app/css/three-pane-app.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ html, body {
.three-pane-app .bottom .middle {
position: absolute;
width: 60%;
left: 20%; }
left: 20%;
height: 100%;
overflow: auto; }
.three-pane-app .bottom .middle .page {
width: 40em;
padding: 1.25em;
Expand Down
2 changes: 2 additions & 0 deletions potions/three-pane-app/sass/three-pane-app.sass
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ html, body
position: absolute
width: 60%
left: 20%
height: 100%
overflow: auto

.page
width: 40em
Expand Down
1 change: 1 addition & 0 deletions potions/two-pane-app/css/two-pane-app.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ html, body {
width: 70%;
right: 0;
height: 100%;
overflow: auto;
padding: 1.25em; }
.two-pane-app .title {
display: -moz-inline-stack;
Expand Down
1 change: 1 addition & 0 deletions potions/two-pane-app/sass/two-pane-app.sass
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ html, body
width: 70%
right: 0
height: 100%
overflow: auto
padding: 1.25em

.title
Expand Down

0 comments on commit bbc668f

Please sign in to comment.