Farben
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user