Skip to content

Commit

Permalink
fix margins
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnDuprey committed Nov 15, 2024
1 parent 28d0d43 commit 1e1653a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/components/CippSettings/CippPermissionCheck.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ const CippPermissionCheck = (props) => {
<Stack
direction="row"
spacing={3}
sx={{ mb: 1 }}
display="flex"
alignItems={"center"}
alignItems="center"
justifyContent={"space-between"}
width={"100%"}
>
Expand Down Expand Up @@ -107,7 +106,12 @@ const CippPermissionCheck = (props) => {
<CippButtonCard
variant={variant}
title={
<Stack direction="row" justifyContent={"space-between"}>
<Stack
direction="row"
alignContent="center"
justifyContent={"space-between"}
sx={{ mb: 0 }}
>
<Box>{type} Check</Box>
<Stack direction="row" spacing={2}>
{importReport?.[type] && <Chip size="small" label="Imported" variant="outlined" />}
Expand Down

0 comments on commit 1e1653a

Please sign in to comment.