Modifying page layout width

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-28 10:07:16 +01:00
parent 73f35b9767
commit 4fe2761347
3 changed files with 5 additions and 5 deletions

View file

@ -17,14 +17,14 @@ export default function RecommendationCostSummaryCard({
<tbody>
<tr>
<td className="font-medium pl-4 py-2">Total Cost:</td>
<td>{"£" + formatNumber(totalCost)}</td>
<td className="pr-2">{"£" + formatNumber(totalCost)}</td>
</tr>
<tr>
<td className="font-medium pl-4 py-2">
Total SAP Points Improvement:
</td>
<td>{totalSap}</td>
<td className="pr-2">{totalSap}</td>
</tr>
</tbody>
</table>

View file

@ -39,7 +39,7 @@ export default function DashboardLayout({
return (
<section>
<div className="mx-auto w-full max-w-screen-2xl">
<div className="mx-auto w-full max-w-5xl">
<div className="flex justify-start items-end p-8">
<h1 className="text-3xl font-bold mr-3 text-gray-900">
{propertyMeta.address}

View file

@ -138,12 +138,12 @@ export default async function Recommendations() {
<tbody>
<tr>
<td className="font-medium pl-4 py-2">Current EPC Rating:</td>
<td className="font-bold">{currentEpcRating}</td>
<td className="font-bold pr-2">{currentEpcRating}</td>
</tr>
<tr>
<td className="font-medium pl-4 py-2">Expected EPC Rating:</td>
<td className="font-bold">{expectedEpcRating}</td>
<td className="font-bold pr-2">{expectedEpcRating}</td>
</tr>
</tbody>
</table>