diff --git a/fedireads/static/format.css b/fedireads/static/format.css index 68f901f2..0a3d3f50 100644 --- a/fedireads/static/format.css +++ b/fedireads/static/format.css @@ -268,8 +268,12 @@ ul.pulldown button { /* discover books page grid of covers */ .book-grid .book-cover { - height: 11em; + height: 176px; width: auto; + margin: 0 auto; +} +.book-grid .no-cover { + width: 115px; } .book-grid > * { margin-bottom: 2em; diff --git a/fedireads/templates/editions.html b/fedireads/templates/editions.html index ffd0c75b..98f647cf 100644 --- a/fedireads/templates/editions.html +++ b/fedireads/templates/editions.html @@ -3,16 +3,16 @@ {% block content %}

Editions of "{{ work.title }}"

-
+
    {% for book in editions %} -
    +
  1. {% include 'snippets/book_cover.html' with book=book %} {% include 'snippets/shelve_button.html' with book=book %} -
  2. + {% endfor %} -
+
{% endblock %}