Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flowbit-frontend/src/components/auth/login-form-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ export function LoginFormCard() {
</div>
<Link
href="/login-help"
className="inline-flex items-center justify-center rounded-full bg-white px-4 py-2 text-sm font-medium text-stone-600 transition hover:bg-stone-100 hover:text-stone-900"
className="inline-flex shrink-0 items-center justify-center whitespace-nowrap rounded-full bg-white px-4 py-2 text-sm font-medium text-stone-600 underline underline-offset-4 transition hover:bg-stone-100 hover:text-stone-900"
>
Support
Can&apos;t log in? Contact admin
</Link>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
</button>
Expand Down
Loading