Skip to content

Commit

Permalink
Change margin-top of content for org-view on smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
abkruse committed Dec 26, 2016
1 parent 640f101 commit 6280c12
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion members/static/css/members.css
Original file line number Diff line number Diff line change
Expand Up @@ -1978,7 +1978,7 @@ footer.sticky-footer {
width: 90%;
}

.prof-tabs {
.prof-tabs, . {
margin-bottom: 10%;
}
}
Expand Down
13 changes: 12 additions & 1 deletion members/templates/members/org_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,18 @@
width: 100%;
}
}

@media only screen and (max-width: 900px) {
.col.s10.offset-s1 {
margin-top: 8%;
}
}

@media only screen and (max-width: 600px) {
.col.s10.offset-s1 {
margin-top: 10%;
}
}
{% endblock %}

{% block content %}
Expand Down Expand Up @@ -50,7 +62,6 @@ <h5>Edit Photo</h5>
</div>

</div>

<div id='picModal' class='modal'>
<div class='picModal-content'>
<div class='picModal-body'>
Expand Down

0 comments on commit 6280c12

Please sign in to comment.