mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
Modifying page layout width
This commit is contained in:
parent
73f35b9767
commit
4fe2761347
3 changed files with 5 additions and 5 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue