Skip to content

Commit 1b14940

Browse files
committed
align buttons
1 parent 69ba2de commit 1b14940

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/components/CippFormPages/CippExchangeSettingsForm.jsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ import { useSettings } from "../../hooks/use-settings";
2020
import { Grid } from "@mui/system";
2121
import { CippApiResults } from "../CippComponents/CippApiResults";
2222
import { useWatch } from "react-hook-form";
23+
import { ChevronDownIcon } from "@heroicons/react/24/outline";
2324

2425
const CippExchangeSettingsForm = (props) => {
2526
const userSettingsDefaults = useSettings();
@@ -295,7 +296,9 @@ const CippExchangeSettingsForm = (props) => {
295296
alignItems: "center",
296297
display: "flex",
297298
justifyContent: "space-between",
298-
p: 2,
299+
py: 3,
300+
pl: 2,
301+
pr: 4,
299302
cursor: "pointer",
300303
"&:hover": {
301304
bgcolor: "action.hover",
@@ -338,7 +341,7 @@ const CippExchangeSettingsForm = (props) => {
338341
transform: isExpanded ? "rotate(180deg)" : "rotate(0deg)",
339342
}}
340343
>
341-
<ExpandMoreIcon />
344+
<ChevronDownIcon />
342345
</SvgIcon>
343346
</Box>
344347
<Collapse in={isExpanded} unmountOnExit>

0 commit comments

Comments
 (0)