Skip to content

Commit

Permalink
Fixed padding and overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tdraier committed Dec 30, 2024
1 parent 588f1a4 commit f95ade9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function ActionDetails({
<Chip size="sm" color="slate" isBusy>
<div
className={classNames(
"flex flex-row items-center gap-x-2",
"flex flex-row items-center gap-x-2 py-2",
hasActions ? "cursor-pointer" : ""
)}
onClick={hasActions ? onClick : undefined}
Expand All @@ -110,9 +110,9 @@ function ActionDetails({
{label === "Thinking" ? (
<span>{label}</span>
) : (
<>
Thinking <span className="text-regular">{label}</span>
</>
<span>
Thinking <span className="text-regular pl-1">{label}</span>
</span>
)}
</div>
</Chip>
Expand Down

0 comments on commit f95ade9

Please sign in to comment.