Merge pull request #133 from twang2218/fix-issue-131-github-buttons-problem

Fix #8 hide the github button when it's in mobile
pull/137/head
Baohua Yang 2016-11-27 10:37:44 +08:00 committed by GitHub
commit fa3c55840c
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{% extends template.self %}
{% block head %}
{{ super() }}
<style>
@media only screen and (max-width: 640px) {
.book-header .btn[aria-label="github"] {
display: none;
}
}
</style>
{% endblock %}