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