File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/components/CippFormPages Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import { useSettings } from "../../hooks/use-settings";
2020import { Grid } from "@mui/system" ;
2121import { CippApiResults } from "../CippComponents/CippApiResults" ;
2222import { useWatch } from "react-hook-form" ;
23+ import { ChevronDownIcon } from "@heroicons/react/24/outline" ;
2324
2425const 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 >
You can’t perform that action at this time.
0 commit comments