Kabelüberwachung: Symbole (Fenster schließen, maximieren) vereinheitlichen

This commit is contained in:
ISA
2025-04-22 14:11:41 +02:00
parent f95a983c56
commit f03b8ea6c8
2 changed files with 5 additions and 8 deletions

View File

@@ -46,12 +46,9 @@ export default function KueModal({ showModal, onClose, slot }: KueModalProps) {
},
}}
>
<div className="bg-littwin-blue text-white p-2 flex justify-between items-center rounded-t-md">
<h2 className="text-sm font-bold">Einstellungen Slot {slot + 1}</h2>
<button
onClick={onClose}
className="text-white text-xl hover:text-gray-200"
>
<div className="p-2 flex justify-between items-center rounded-t-md">
<h2 className="text-base font-bold">Einstellungen Slot {slot + 1}</h2>
<button onClick={onClose} className="text-2xl hover:text-gray-200">
<i className="bi bi-x-circle-fill"></i>
</button>
</div>
@@ -59,7 +56,7 @@ export default function KueModal({ showModal, onClose, slot }: KueModalProps) {
<div className="flex justify-center bg-gray-100 space-x-2 p-2">
<button
onClick={() => setActiveTab("kue")}
className={`px-4 py-1 rounded-t font-bold text-sm ${
className={`px-4 py-1 rounded-t font-bold text-base ${
activeTab === "kue"
? "bg-white text-blue-600"
: "text-gray-500 hover:text-black"

View File

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