Skip to content

Commit

Permalink
[frontend] fix header font to match old list
Browse files Browse the repository at this point in the history
  • Loading branch information
labo-flg committed Sep 9, 2024
1 parent deb2cd4 commit 79836df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const DataTableHeader: FunctionComponent<DataTableHeaderProps> = ({
}}
>
<Tooltip title={t_i18n(column.label)}>
<span style={{ fontSize: '13px' }}>{t_i18n(column.label).toUpperCase()}</span>
<span style={{ fontSize: '12px' }}>{t_i18n(column.label).toUpperCase()}</span>
</Tooltip>
{sortBy && (orderAsc ? <ArrowDropUp /> : <ArrowDropDown />)}
</div>
Expand Down

0 comments on commit 79836df

Please sign in to comment.