fix: resolve horizontal layout blowout in mobile dashboard list view

This commit is contained in:
2026-06-08 12:55:59 +02:00
parent de6cee06ad
commit d3f5d02a6c
8 changed files with 171 additions and 82 deletions
@@ -7,7 +7,7 @@
{
<div @key='"current-reading-book"' class="card-layout">
<div class="book-cover">
<img src="@(Book.CoverUrl ?? "https://via.placeholder.com/120x180?text=No+Cover")" alt="@Book.Title" />
<img src="@(string.IsNullOrEmpty(Book.CoverUrl) ? "https://via.placeholder.com/120x180?text=No+Cover" : Book.CoverUrl)" alt="@Book.Title" />
</div>
<div class="book-details">
@@ -42,7 +42,7 @@
<div class="actions">
<button class="btn-nexus outline" @onclick="HandleContinueReading">
Continue Reading
Kontynuuj czytanie
<NexusIcon Name="arrow-right" Size="16" />
</button>
</div>