Merge pull request #57 from eetukarvonen/top-button
Add return to top button (#33)
This commit is contained in:
commit
f9acfa69ea
@ -59,3 +59,9 @@
|
|||||||
visibility: visible;
|
visibility: visible;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.scroller {
|
||||||
|
position: fixed;
|
||||||
|
right: 80px;
|
||||||
|
bottom: 30px;
|
||||||
|
}
|
||||||
|
@ -19,4 +19,10 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
{% include '_empty_feed.html' %}
|
{% include '_empty_feed.html' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<div class="scroller">
|
||||||
|
<a href="#top" class="ui button">
|
||||||
|
<i style="margin: 0;" class="chevron up icon"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -51,5 +51,10 @@
|
|||||||
{% include '_twitter_post.html' %}
|
{% include '_twitter_post.html' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<div class="scroller">
|
||||||
|
<a href="#top" class="ui button">
|
||||||
|
<i style="margin: 0;" class="chevron up icon"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
Reference in New Issue
Block a user