fix: adjust title font size in TableUI component for better readability
This commit is contained in:
parent
7f916db9d1
commit
63b102e925
|
|
@ -58,7 +58,9 @@ export const TableUI = <T extends object>({
|
|||
return (
|
||||
<div className="flex flex-col flex-grow">
|
||||
<div className="w-full p-4 md:py-6 pr-6 pl-3 ">
|
||||
<div className="flex flex-row text-2xl font-bold">{title}</div>
|
||||
<div className="flex flex-row text-xl md:text-2xl font-bold">
|
||||
{title}
|
||||
</div>
|
||||
{breadcrumb?.length ? (
|
||||
<BreadcrumbBetterLink data={breadcrumb} />
|
||||
) : (
|
||||
|
|
|
|||
Loading…
Reference in New Issue