File tree Expand file tree Collapse file tree
apps/web/src/modules/home Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,17 +60,19 @@ export default function HomeLatestPricesData(props: {
6060 < Fragment key = { item . parentId } >
6161 < TableRow >
6262 < TableCell colSpan = { 2 } >
63- < strong className = "text-base" > { item . parentName } </ strong >
63+ < strong className = "text-sm lg:text-base" >
64+ { item . parentName }
65+ </ strong >
6466 </ TableCell >
6567 </ TableRow >
6668 { item . classes . map ( ( cls ) => (
6769 < TableRow key = { cls . id } >
68- < TableCell className = "pl-8" >
70+ < TableCell className = "pl-8 text-sm lg:text-base py-3 " >
6971 < Tooltip >
7072 < TooltipTrigger asChild >
7173 < Link
7274 href = { `/${ props . tradingCenter } /prices/${ item . parentId } /${ cls . id } ` }
73- className = "space-x-2 hover:underline hover:text-primary text-base "
75+ className = "space-x-2 hover:underline hover:text-primary"
7476 target = "_blank"
7577 rel = "noopener noreferrer"
7678 >
@@ -82,7 +84,7 @@ export default function HomeLatestPricesData(props: {
8284 < TooltipContent > View more price details</ TooltipContent >
8385 </ Tooltip >
8486 </ TableCell >
85- < TableCell >
87+ < TableCell className = "text-sm lg:text-base py-3" >
8688 < PesoSign />
8789 { cls . price [ 0 ] } - < PesoSign />
8890 { cls . price [ 1 ] ?? [ cls . price [ 0 ] ] }
You can’t perform that action at this time.
0 commit comments