Skip to content

Commit

Permalink
Issue #PS-000 fix: Resolved UT issues
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Aug 10, 2024
1 parent 2c38fc1 commit 10284a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/SimpleModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const SimpleModal: React.FC<SimpleModalProps> = ({
width: isSmallScreen ? "90%" : isLargeScreen ? "65%" : "85%",
maxHeight: "80vh",
backgroundColor: "#fff",
borderRadius: theme.shape.borderRadius,
borderRadius: '8px',
boxShadow: theme.shadows[5],
};

Expand All @@ -60,8 +60,8 @@ const SimpleModal: React.FC<SimpleModalProps> = ({
padding: theme.spacing(2),
zIndex: 9999,
borderBottom: `1px solid ${theme.palette.divider}`,
borderTopLeftRadius: theme.shape.borderRadius,
borderTopRightRadius: theme.shape.borderRadius,
borderTopLeftRadius: '8px',
borderTopRightRadius: '8px',
};

const contentStyle = {
Expand Down

0 comments on commit 10284a9

Please sign in to comment.