Skip to content

Commit

Permalink
improvement(prompts): use text-small for versions and inputs texts (#…
Browse files Browse the repository at this point in the history
…2860)

Co-authored-by: use-tusk[bot] <144006087+use-tusk[bot]@users.noreply.github.com>
  • Loading branch information
use-tusk[bot] authored Oct 23, 2024
1 parent 6effbb3 commit 47df44d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/components/templates/prompts/id/promptIdPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -781,12 +781,12 @@ const PromptIdPage = (props: PromptIdPageProps) => {
<div className="w-1/3 flex flex-col">
<div className="border-y border-x border-[#E8EAEC] dark:border-slate-700 bg-[#F9FAFB] dark:bg-black">
<div
className="flex flex-row items-center justify-between px-4 h-12 cursor-pointer"
className="flex flex-row items-center justify-between px-4 py-3 cursor-pointer"
onClick={() =>
setIsVersionsExpanded(!isVersionsExpanded)
}
>
<h2 className="text-lg font-medium">Versions</h2>
<h2 className="font-medium text-sm">Versions</h2>
<ChevronDownIcon
className={`h-5 w-5 transition-transform ${
isVersionsExpanded ? "rotate-180" : ""
Expand Down Expand Up @@ -966,7 +966,7 @@ const PromptIdPage = (props: PromptIdPageProps) => {
className="flex flex-row items-center justify-between px-4 h-12 cursor-pointer"
onClick={() => setIsInputsExpanded(!isInputsExpanded)}
>
<h2 className="text-lg font-medium">Inputs</h2>
<h2 className="font-medium text-sm">Inputs</h2>
<div className="flex items-center space-x-2">
{isSearchVisible ? (
<div className="relative w-64">
Expand Down

0 comments on commit 47df44d

Please sign in to comment.