From 817c41afb98e6c7a2c9900514f1c55b7aaae76e8 Mon Sep 17 00:00:00 2001 From: Allan Carr Date: Mon, 1 Apr 2024 14:27:25 -0700 Subject: [PATCH] IO-2552 PVRT Button Spacing and Alignment Signed-off-by: Allan Carr --- .../ca-bc-pvrt-calculator.component.jsx | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/client/src/components/ca-bc-pvrt-calculator/ca-bc-pvrt-calculator.component.jsx b/client/src/components/ca-bc-pvrt-calculator/ca-bc-pvrt-calculator.component.jsx index 0a1476ee5..887ece76b 100644 --- a/client/src/components/ca-bc-pvrt-calculator/ca-bc-pvrt-calculator.component.jsx +++ b/client/src/components/ca-bc-pvrt-calculator/ca-bc-pvrt-calculator.component.jsx @@ -1,8 +1,8 @@ -import React, { useState } from "react"; -import { Button, Form, InputNumber, Popover } from "antd"; -import { logImEXEvent } from "../../firebase/firebase.utils"; -import { useTranslation } from "react-i18next"; import { CalculatorFilled } from "@ant-design/icons"; +import { Button, Form, InputNumber, Popover, Space } from "antd"; +import React, { useState } from "react"; +import { useTranslation } from "react-i18next"; +import { logImEXEvent } from "../../firebase/firebase.utils"; export default function CABCpvrtCalculator({ disabled, form }) { const [visibility, setVisibility] = useState(false); @@ -26,10 +26,14 @@ export default function CABCpvrtCalculator({ disabled, form }) { - - +
+ + + + +
);