From 78bff3f2ed90c1124173f49a5550c5ba5319039e Mon Sep 17 00:00:00 2001 From: Oleg Proskurin Date: Fri, 24 Oct 2025 22:48:10 +0700 Subject: [PATCH] fix: mobile position --- .../shared/ApiKeyWidget/apikey-widget.tsx | 88 +++++++++++-------- 1 file changed, 52 insertions(+), 36 deletions(-) diff --git a/apps/landing/src/components/shared/ApiKeyWidget/apikey-widget.tsx b/apps/landing/src/components/shared/ApiKeyWidget/apikey-widget.tsx index 9c85332..a4090ff 100644 --- a/apps/landing/src/components/shared/ApiKeyWidget/apikey-widget.tsx +++ b/apps/landing/src/components/shared/ApiKeyWidget/apikey-widget.tsx @@ -141,13 +141,13 @@ export function ApiKeyWidget() { {ui.expanded && (
{/* Header */}
-

+

{apiKeyValidated ? 'API Key Active' : 'Enter API Key'}

{apiKeyValidated && apiKeyInfo && ( @@ -158,10 +158,12 @@ export function ApiKeyWidget() {
@@ -222,7 +234,7 @@ export function ApiKeyWidget() { {/* Error Message */} {apiKeyError && ( -
+

{apiKeyError}

)} @@ -233,12 +245,14 @@ export function ApiKeyWidget() { @@ -275,7 +291,7 @@ export function ApiKeyWidget() { {/* Helper Text */} {!apiKeyValidated && ( -

+

Press Enter or click Validate to verify your API key

)}