Fix #8 hide the github button if it's mobile
Signed-off-by: Tao Wang <twang2218@gmail.com>pull/133/head
parent
710956aed5
commit
eb66a35128
|
@ -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 %}
|
Loading…
Reference in New Issue