minor aesthetics

This commit is contained in:
Khalim Conn-Kowlessar 2025-08-22 03:08:28 +00:00
parent 47a1bbd7ef
commit eff67d285a

View file

@ -139,35 +139,35 @@ function SummaryBox({ scenarios, numProperties }: SummaryBoxProps) {
<tbody>
<tr>
<td className="text-brandblue">Budget</td>
<td className="text-brandblue text-end font-bold">{budgetFormatted}</td>
<td className="text-brandblue text-end">{budgetFormatted}</td>
</tr>
<tr>
<td className="text-brandblue">Cost</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{totalCostFormatted}
</td>
</tr>
<tr>
<td className="text-brandblue">Funding</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{funding}
</td>
</tr>
<tr>
<td className="text-brandblue ">Cost after funding</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{netCost}
</td>
</tr>
<tr>
<td className="text-brandblue">Contingency</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{contingency}
</td>
</tr>
<tr>
<td className="text-brandblue">Total properties</td>
<td className="text-brandblue text-end font-bold">{numProperties}</td>
<td className="text-brandblue text-end">{numProperties}</td>
</tr>
</tbody>
</table>
@ -186,13 +186,13 @@ function SummaryBox({ scenarios, numProperties }: SummaryBoxProps) {
</span>{" "}
Savings
</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{co2EquivalentSavingsFormatted}
</td>
</tr>
<tr>
<td className="text-brandblue">Annual Energy Savings</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{energySavingsFormatted}
</td>
</tr>
@ -207,13 +207,13 @@ function SummaryBox({ scenarios, numProperties }: SummaryBoxProps) {
<tbody>
<tr>
<td className="text-brandblue">Annual Energy Bill Reduction</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{energyCostSavingsFormatted}
</td>
</tr>
<tr>
<td className="text-brandblue">Total Value Increase</td>
<td className="text-brandblue text-end font-bold">
<td className="text-brandblue text-end">
{totalValueIncreaseFormatted}
</td>
</tr>