mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-24 15:28:54 +00:00
Merge pull request #133 from twang2218/fix-issue-131-github-buttons-problem
Fix #8 hide the github button when it's in mobile
This commit is contained in:
commit
fa3c55840c
12
_layouts/website/page.html
Normal file
12
_layouts/website/page.html
Normal 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 %}
|
Loading…
Reference in New Issue
Block a user