diff --git a/bookwyrm/static/css/bookwyrm.css b/bookwyrm/static/css/bookwyrm.css index 4d9aabb4..629815b8 100644 --- a/bookwyrm/static/css/bookwyrm.css +++ b/bookwyrm/static/css/bookwyrm.css @@ -615,7 +615,7 @@ ol.ordered-list li::before { grid-template-columns: repeat(auto-fit, minmax(10em, 1fr)); gap: 1.5rem; align-items: end; - justify-items: center; + justify-items: stretch; } .books-grid > .is-big { diff --git a/bookwyrm/templates/annual_summary/layout.html b/bookwyrm/templates/annual_summary/layout.html index ebcf7243..7fa11a2b 100644 --- a/bookwyrm/templates/annual_summary/layout.html +++ b/bookwyrm/templates/annual_summary/layout.html @@ -235,14 +235,14 @@ {% for book in books %} {% if book.id in best_ratings_books_ids %} - {% include 'snippets/book_cover.html' with book=book cover_class='is-w-auto' %} + {% include 'snippets/book_cover.html' with book=book cover_class='is-w-auto' size='xxlarge' %} {{ book.title }} {% else %} - {% include 'snippets/book_cover.html' with book=book cover_class='is-w-auto' %} + {% include 'snippets/book_cover.html' with book=book cover_class='is-w-auto' size='large' %} {{ book.title }} diff --git a/bookwyrm/views/annual_summary.py b/bookwyrm/views/annual_summary.py index 15de2812..07838d6e 100644 --- a/bookwyrm/views/annual_summary.py +++ b/bookwyrm/views/annual_summary.py @@ -46,7 +46,7 @@ class AnnualSummary(View): finish_date__year__gte=year, finish_date__year__lt=int(year) + 1, ) - .order_by("-finish_date") + .order_by("finish_date") .values_list("book__id", flat=True) )