mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-25 01:20:35 +00:00
fix sizes
This commit is contained in:
parent
8fd0d5baf0
commit
489c827673
1 changed files with 2 additions and 2 deletions
|
@ -235,14 +235,14 @@
|
||||||
{% for book in books %}
|
{% for book in books %}
|
||||||
{% if book.id in best_ratings_books_ids %}
|
{% if book.id in best_ratings_books_ids %}
|
||||||
<a href="{{ book.local_path }}" class="has-text-centered is-big has-text-success-dark">
|
<a href="{{ book.local_path }}" class="has-text-centered is-big has-text-success-dark">
|
||||||
{% 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' %}
|
||||||
<span class="book-title is-serif is-size-5">
|
<span class="book-title is-serif is-size-5">
|
||||||
{{ book.title }}
|
{{ book.title }}
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ book.local_path }}" class="has-text-centered has-text-success-dark">
|
<a href="{{ book.local_path }}" class="has-text-centered has-text-success-dark">
|
||||||
{% 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' %}
|
||||||
<span class="book-title is-serif is-size-6">
|
<span class="book-title is-serif is-size-6">
|
||||||
{{ book.title }}
|
{{ book.title }}
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in a new issue