style: KVZ LEDs style

This commit is contained in:
ISA
2025-07-31 14:11:24 +02:00
parent 85860ae9f0
commit 90b9616d50
7 changed files with 12 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ const FallSensors: React.FC<FallSensorsProps> = ({ slotIndex }) => {
});
return (
<div className="bg-gray-300 border border-gray-400 rounded p-1">
<div className="bg-gray-300 border border-gray-400 rounded p-1 mt-4 w-full ">
{/* Überschrift mit KVZ-Labels */}
<div className="flex justify-between items-center mb-2">
<span className="text-[8px] font-medium text-gray-700">KVZ1</span>

View File

@@ -467,7 +467,7 @@ const Kue705FO: React.FC<Kue705FOProps> = ({
{/* KVz Panel - Anzeige ganz unten, nur wenn KVz aktiv ist */}
{showKvzPanel && isKvzActiveForSlot && (
<div className=" bg-gray-400 mt-4 border p-1">
<div className="flex flex-col items-center ">
<FallSensors slotIndex={slotIndex} />
</div>
)}