From 902815c4c5f951d20d2297fe52db2446bf9901e1 Mon Sep 17 00:00:00 2001 From: balajis-qb <145029139+balajis-qb@users.noreply.github.com> Date: Thu, 30 Jul 2026 12:20:14 +0530 Subject: [PATCH] fix: set explicit width on custom time input example The docs "Custom Time Input" example left the input element without an explicit width, so it fell back to the browser's default text input width, leaving a large empty gap next to the short HH:MM value. --- docs-site/src/examples/ts/customTimeInput.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-site/src/examples/ts/customTimeInput.tsx b/docs-site/src/examples/ts/customTimeInput.tsx index 2c39db267..61167d4f1 100644 --- a/docs-site/src/examples/ts/customTimeInput.tsx +++ b/docs-site/src/examples/ts/customTimeInput.tsx @@ -19,7 +19,7 @@ const CustomTimeInput = () => { onClick={(e: React.MouseEvent) => (e.target as HTMLInputElement).focus() } - style={{ border: "solid 1px pink" }} + style={{ border: "solid 1px pink", width: "70px" }} /> );