feat: responsive Icon-Größe für CogIcon angepasst

- Icon-Größe abhängig von Breakpoints umgesetzt
- Standardmäßig klein auf Laptop
- Ab xl größer, ab 2xl noch größer
- bessere Darstellung auf allen Auflösungen
This commit is contained in:
Ismail Ali
2025-04-15 23:36:24 +02:00
parent 689d95c89d
commit 66d620fa68
3 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ export default function DigitalInputs({ openInputModal, inputRange }: Props) {
<td className="px-1 py-1">{input.label}</td> <td className="px-1 py-1">{input.label}</td>
<td className="px-1 py-1"> <td className="px-1 py-1">
<CogIcon <CogIcon
className="text-gray-400 text-base cursor-pointer" className="2xl:w-8 2xl:h-8 xl:w-6 xl:h-6 laptop:w-4 laptop:h-4 cursor-pointer"
onClick={() => openInputModal(input)} onClick={() => openInputModal(input)}
/> />
</td> </td>

View File

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