From 905b75e0a844f9d91daeb5bf912d85fd92a87780 Mon Sep 17 00:00:00 2001 From: Dana Khaing Date: Tue, 26 May 2026 11:35:49 +0100 Subject: [PATCH] Polish login help link and case actions --- flowbit-frontend/src/components/auth/login-form-card.tsx | 4 ++-- .../src/components/support/customer-service-page.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flowbit-frontend/src/components/auth/login-form-card.tsx b/flowbit-frontend/src/components/auth/login-form-card.tsx index dca1dd8..810809e 100644 --- a/flowbit-frontend/src/components/auth/login-form-card.tsx +++ b/flowbit-frontend/src/components/auth/login-form-card.tsx @@ -318,9 +318,9 @@ export function LoginFormCard() { - Support + Can't log in? Contact admin diff --git a/flowbit-frontend/src/components/support/customer-service-page.tsx b/flowbit-frontend/src/components/support/customer-service-page.tsx index 6e82b01..d677315 100644 --- a/flowbit-frontend/src/components/support/customer-service-page.tsx +++ b/flowbit-frontend/src/components/support/customer-service-page.tsx @@ -455,7 +455,7 @@ export function CustomerServicePage() { type="button" onClick={handleToggleCaseStatus} disabled={isSaving} - className="inline-flex items-center justify-center rounded-[16px] border border-stone-900/10 bg-[#f8f6f2] px-4 py-2.5 text-sm font-semibold text-stone-700 transition hover:border-stone-300 disabled:cursor-not-allowed disabled:opacity-60" + className="inline-flex shrink-0 items-center justify-center whitespace-nowrap rounded-[16px] border border-stone-900/10 bg-[#f8f6f2] px-4 py-2.5 text-sm font-semibold text-stone-700 transition hover:border-stone-300 disabled:cursor-not-allowed disabled:opacity-60" > {selectedCase.status === "OPEN" ? "Close case" : "Reopen case"}