Skip to content

Commit

Permalink
refactor(design-system): adjusted overflow in Table head (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwansikk committed Apr 8, 2024
1 parent 39e59d2 commit 7a85329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/design-system/src/Table/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Table = ({ head, className, children, ...rest }: TableProps) => {
{head.map((item, index) => (
<th
key={index}
className="py-2 first:rounded-l-lg last:rounded-r-lg"
className="p-2 first:rounded-l-lg last:rounded-r-lg text-nowrap"
>
{item}
</th>
Expand Down

0 comments on commit 7a85329

Please sign in to comment.