Skip to content

Commit

Permalink
fix(table view): use rem text size
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Jan 9, 2025
1 parent 8b9d2b0 commit 63b4070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/data-display/tables/TableView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const TableView = <T, S>({
<>
<div className={`overflow-x-auto scrollbar ${tableWrapperClassName}`}>
<table className={'w-full table-auto' + ' ' + tableClass}>
<thead className={`text-[14px] text-grey ${headerClass}`}>
<thead className={`text-[0.875rem] text-grey ${headerClass}`}>
{table.getHeaderGroups().map((headerGroup) => (
<tr
key={headerGroup.id}
Expand Down

0 comments on commit 63b4070

Please sign in to comment.