fix: Datenbank alle Buttons mit Littwinblau ohne Mousove Farbe

This commit is contained in:
ISA
2025-05-07 09:27:09 +02:00
parent 33ca863cc0
commit 63381a1e55
2 changed files with 6 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ const DatabaseSettings: React.FC = () => {
<button
type="button"
onClick={handleClearMessages}
className="bg-littwin-blue text-white px-4 py-2 rounded shadow hover:bg-blue-700"
className="bg-littwin-blue text-white px-4 py-2 rounded shadow "
>
Meldungen löschen
</button>
@@ -25,7 +25,7 @@ const DatabaseSettings: React.FC = () => {
<button
type="button"
onClick={handleClearLogger}
className="bg-littwin-blue text-white px-4 py-2 rounded shadow hover:bg-blue-700"
className="bg-littwin-blue text-white px-4 py-2 rounded shadow "
>
Messwerte Logger löschen
</button>
@@ -34,14 +34,14 @@ const DatabaseSettings: React.FC = () => {
{isAdminLoggedIn && (
<div className="mt-8 border-t pt-6">
<h3 className="text-md font-semibold mb-4 text-red-700">
Nur für Administratoren
Nur für Administratoren
</h3>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<button
type="button"
onClick={handleClearDatabase}
className="bg-red-600 text-white px-4 py-2 rounded shadow hover:bg-red-700"
className="bg-littwin-blue text-white px-4 py-2 rounded shadow "
>
Datenbank vollständig leeren
</button>
@@ -49,7 +49,7 @@ const DatabaseSettings: React.FC = () => {
<button
type="button"
onClick={handleClearConfig}
className="bg-red-600 text-white px-4 py-2 rounded shadow hover:bg-red-700"
className="bg-littwin-blue text-white px-4 py-2 rounded shadow "
>
Konfiguration löschen
</button>

View File

@@ -6,5 +6,5 @@
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
*/
const webVersion = "1.6.377";
const webVersion = "1.6.378";
export default webVersion;