fix: delete Mouseover effect from Button in Berichte/meldungen

This commit is contained in:
ISA
2025-05-07 09:53:11 +02:00
parent e811cf24d5
commit 0a4fd3e657
2 changed files with 4 additions and 4 deletions

View File

@@ -94,7 +94,7 @@ export default function Messages() {
</div>
<button
onClick={fetchMessages}
className="bg-littwin-blue text-white px-4 py-2 rounded hover:bg-blue-600"
className="bg-littwin-blue text-white px-4 py-2 rounded "
>
Anzeigen
</button>
@@ -139,7 +139,7 @@ export default function Messages() {
<button
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
className="bg-littwin-blue text-white px-4 py-2 rounded hover:bg-blue-600"
className="bg-littwin-blue text-white px-4 py-2 rounded "
>
Zurück
</button>
@@ -151,7 +151,7 @@ export default function Messages() {
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
disabled={currentPage === totalPages}
className="bg-littwin-blue text-white px-4 py-2 rounded hover:bg-blue-600"
className="bg-littwin-blue text-white px-4 py-2 rounded "
>
Weiter
</button>