use css cursor: pointer for screenshot picker

This commit is contained in:
Bex Warner
2017-08-06 19:52:55 -07:00
parent 64ec8f33d3
commit 0a21c8e21f

View File

@@ -41,7 +41,7 @@ layout: default
{% if page.screenshots.size > 1 %}
<div class="d-flex flex-items-center flex-justify-center mt-3">
{% for screenshot in page.screenshots %}
<label for="screenshot-{{ forloop.index }}" class="rounded-1 border border-gray-light mx-2" style="width:125px; height: 70px; background-image: url({{ screenshot }}); background-size: cover; background-position: center;">
<label for="screenshot-{{ forloop.index }}" class="rounded-1 border border-gray-light mx-2" style="width:125px; height: 70px; background-image: url({{ screenshot }}); background-size: cover; background-position: center; cursor: pointer;">
</label>
{% endfor %}
</div>