Skip to content

Commit

Permalink
fix: add gap between columns
Browse files Browse the repository at this point in the history
  • Loading branch information
breeg554 committed Oct 17, 2024
1 parent 6bf0656 commit f2ca797
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ function BlockInputItem({ data, disabled }: IItem) {
};

return (
<div className="relative grid grid-cols-[120px_60px_70px]">
<p className="text-sm line-clamp-1" title={data.from.block_name}>
<div className="relative grid grid-cols-[120px_60px_70px] gap-x-1">
<p className="text-sm truncate" title={data.from.block_name}>
{data.from.block_name}
</p>
<div className="flex items-center text-sm">
Expand Down

0 comments on commit f2ca797

Please sign in to comment.