Alle Schalter in Littwin Blau in der Einstellungen

This commit is contained in:
ISA
2024-10-21 07:40:57 +02:00
parent 05648bc0bb
commit 56a501da87

View File

@@ -306,7 +306,7 @@ function SettingModal({ showModal, onClose }) {
{/* Button für Systemzeit übernehmen */}
<div className="flex w-full mt-1 justify-end">
<button
className="bg-blue-500 text-white px-4 py-2 rounded"
className="bg-littwin-blue text-white px-4 py-2 rounded"
onClick={() => {
if (
window.confirm(
@@ -382,7 +382,7 @@ function SettingModal({ showModal, onClose }) {
{/* Datenbank leeren und Neustart CPL */}
<div className="flex flex-col items-start justify-between mt-4 space-y-2">
<button
className="bg-orange-500 text-white px-4 py-2 rounded"
className="bg-littwin-blue text-white px-4 py-2 rounded"
onClick={() => handleReboot()}
>
Neustart CPL
@@ -392,14 +392,14 @@ function SettingModal({ showModal, onClose }) {
{/* Modal Footer */}
<div className="flex justify-between mt-4">
<button
className="bg-red-500 text-white px-4 py-2 rounded"
className="bg-littwin-blue text-white px-4 py-2 rounded"
onClick={() => handleClearDatabase()}
>
Datenbank leeren
</button>
<button
onClick={() => handleSubmit()}
className="bg-blue-500 text-white px-4 py-2 rounded"
className="bg-littwin-blue text-white px-4 py-2 rounded"
>
Übernehmen
</button>