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

Commit

Permalink
Merge pull request #122 from barbararamiro/MOBILE-769
Browse files Browse the repository at this point in the history
MOBILE-769 Prevent bottom contents in displaying partially
  • Loading branch information
jleyva committed Nov 28, 2014
2 parents 0f678db + bd23a1d commit 7306efe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,23 @@ body {
#panel-center.animate {
left: 0%;
}
#panel-center:after {
content: "";
display: inherit;
height: 44px;
}
#panel-right {
left: 100%;
width: 100%;
top: 44px;
padding-right: 50px;
display: none;
}
#panel-right:after {
content: "";
display: inherit;
height: 44px;
}
#mycourses {
overflow: auto;
width: 100%;
Expand Down
10 changes: 10 additions & 0 deletions less/layout.less
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ body {
&.animate {
left: 0%;
}
&:after {
content: "";
display: inherit;
height: 44px;
}
}

#panel-right {
Expand All @@ -54,6 +59,11 @@ body {
top: 44px;
padding-right: 50px;
display: none;
&:after {
content: "";
display: inherit;
height: 44px;
}
}

#mycourses {
Expand Down

0 comments on commit 7306efe

Please sign in to comment.