Skip to content

Commit

Permalink
verticaly align parameter name to the top
Browse files Browse the repository at this point in the history
  • Loading branch information
iway1 committed Apr 7, 2023
1 parent 1a8fdce commit 2c30ab6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion packages/dev-app/src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,15 @@ export const appRouter = createTRPCRouter({
searchTerm: z
.string()
.optional()
.describe("The name of the thing to search for."),
.describe(
"The name of the thing to search for. Really really long long long boi long boi long"
),
searchTerm2: z
.string()
.optional()
.describe(
"The name of the thing to search for. Really really long long long boi long boi long Really really long long long boi long boi long Really really long long long boi long boi long Really really long long long boi long boi long"
),
})
)
.query(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function DocumentationSection({
key={key}
className="border-b border-separatorLine flex-row space-x-2"
>
<td className="text-sm text-neutralText font-bold py-2">
<td className="text-sm text-neutralText font-bold align-top py-2">
{`${key}: `}
</td>
<td className="pl-4 text-sm text-gray-500 py-2">
Expand Down

0 comments on commit 2c30ab6

Please sign in to comment.