This commit is contained in:
ISA
2025-05-05 12:31:43 +02:00
parent 5185e6f442
commit 7beb653449
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-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700"
className="bg-littwin-blue text-white px-4 py-2 rounded hover:bg-blue-600"
>
Anzeigen
</button>
@@ -139,7 +139,7 @@ export default function Messages() {
<button
onClick={() => setCurrentPage((prev) => Math.max(prev - 1, 1))}
disabled={currentPage === 1}
className="bg-blue-500 text-white px-4 py-2 rounded disabled:opacity-50"
className="bg-littwin-blue text-white px-4 py-2 rounded hover:bg-blue-600"
>
Zurück
</button>
@@ -151,7 +151,7 @@ export default function Messages() {
setCurrentPage((prev) => Math.min(prev + 1, totalPages))
}
disabled={currentPage === totalPages}
className="bg-blue-500 text-white px-4 py-2 rounded disabled:opacity-50"
className="bg-littwin-blue text-white px-4 py-2 rounded hover:bg-blue-600"
>
Weiter
</button>