issue remove `+` icon from empty mylib, mycont, favbooks pages to make it more mobile friendly #208

This commit is contained in:
Kostiantyn Stoliarskyi 2023-06-22 13:07:18 +03:00
parent 442f5b0d06
commit 7bd41d154c
3 changed files with 8 additions and 5 deletions

View File

@ -16,7 +16,7 @@
{% if current_user.is_authenticated and books.total<1 %}
<!-- prettier-ignore -->
<div class="mx-auto my-auto h-full w-full ">
<a href="{{ url_for('home.explore_books') }}" class="w-full h-full text-black dark:text-white focus:ring-4 focus:outline-none focus:ring-blue-100 font-medium rounded-lg text-sm px-4 py-2.5 justify-center text-center inline-flex items-center border border-gray-200 dark:border-gray-700"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" /> </svg> You don't have favorite books. Explore books and star your favorites! </div></a></div>
<a href="{{ url_for('home.explore_books') }}" class="w-full h-full text-black dark:text-white focus:ring-4 focus:outline-none focus:ring-blue-100 font-medium rounded-lg text-sm px-4 py-2.5 justify-center text-center inline-flex items-center border border-gray-200 dark:border-gray-700"> You don't have favorite books. Explore books and star your favorites! </div></a></div>
<!-- prettier-ignore -->
{% endif %}
<!-- prettier-ignore -->

View File

@ -17,7 +17,7 @@
{% if current_user.is_authenticated and not interpretations.total %}
<!-- prettier-ignore -->
<div class="mx-auto my-auto h-full w-full p-2">
<a href="{{url_for('home.get_all')}}" type="button" class="w-full h-full text-black dark:text-white focus:ring-4 focus:outline-none focus:ring-blue-100 font-medium rounded-lg text-sm px-4 py-2.5 justify-center text-center inline-flex items-center border border-gray-200 dark:border-gray-700"><div class="my-auto"></div><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" /> </svg> You don't have contributions yet. Explore books and start contributing!</div></a></div>
<a href="{{url_for('home.get_all')}}" type="button" class="w-full h-full text-black dark:text-white focus:ring-4 focus:outline-none focus:ring-blue-100 font-medium rounded-lg text-sm px-4 py-2.5 justify-center text-center inline-flex items-center border border-gray-200 dark:border-gray-700"><div class="my-auto"></div> You don't have contributions yet. Explore books and start contributing!</div></a></div>
<!-- prettier-ignore -->
{% endif %}
<!-- prettier-ignore -->

View File

@ -21,9 +21,12 @@
</button>
</div>
{% endif %} {% if current_user.is_authenticated and not books.total %}
<div class="mx-auto my-auto h-full w-full p-2">
{% include 'book/components/new_book_btn.html' %}
</div>
{% if current_user.is_authenticated and books.total<1 %}
<!-- prettier-ignore -->
<div class="mx-auto my-auto h-full w-full ">
<button type="button" data-modal-target="add-book-modal" data-modal-toggle="add-book-modal" class="w-full h-full text-black dark:text-white focus:ring-4 focus:outline-none focus:ring-blue-100 font-medium rounded-lg text-sm px-4 py-2.5 justify-center text-center inline-flex items-center border border-gray-200 dark:border-gray-700"> New book </div></a></div>
<!-- prettier-ignore -->
{% endif %}
{% endif %}
<!-- prettier-ignore -->