From 462975a4c5834b2d240c59be9db4558ec599e677 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 20 Jan 2026 17:11:31 +0100 Subject: [PATCH] new desigh test2 #deploy --- .../event/components/EventFormInline.tsx | 62 +++++++++++++++---- 1 file changed, 50 insertions(+), 12 deletions(-) diff --git a/src/features/event/components/EventFormInline.tsx b/src/features/event/components/EventFormInline.tsx index 659c5f5..6f7d4f7 100644 --- a/src/features/event/components/EventFormInline.tsx +++ b/src/features/event/components/EventFormInline.tsx @@ -522,6 +522,32 @@ const EventFormInline: React.FC = ({ onSuccess, onCancel, ); }; + const MobileTabButton = ({ + tab, + label, + Icon, + }: { + tab: 'stammdaten' | 'promotion' | 'artists'; + label: string; + Icon: React.ComponentType<{ className?: string }>; + }) => { + const isActive = activeTab === tab; + return ( + + ); + }; + return (
@@ -537,20 +563,32 @@ const EventFormInline: React.FC = ({ onSuccess, onCancel, {error &&
{error}
}
-
- +
+ )} -
+
+ {!isMobile && ( + + )} + +
{activeTab === 'stammdaten' && (