feat: auto-hide search

This commit is contained in:
2024-07-07 23:48:02 +03:00
parent e6da8b17a7
commit 9d2373a298
5 changed files with 23 additions and 10 deletions

View File

@@ -13,7 +13,7 @@
<button
(click)="goToReader(chapter.number, chapter.volume)"
[title]="chapter.name"
class="p-3 text-white bg-slate-600 w-[400px] mt-3 rounded-lg"
class="p-3 text-white bg-slate-600 w-[300px] mt-3 rounded-lg"
>
<h3>
<strong>{{ chapter.number }}.</strong> {{ chapter.name || "Нет названия" }}
@@ -22,7 +22,7 @@
}
</div>
</details>
<button class="p-3 text-white bg-slate-600 w-[400px] mt-5 rounded-lg" (click)="goToReader()">
<button class="p-3 text-white bg-slate-600 w-[300px] mt-5 rounded-lg" (click)="goToReader()">
Читать
</button>
}