Skip to content

Commit

Permalink
Design fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-kaufman committed Sep 3, 2024
1 parent ef259bc commit d718da8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/modals/DeviceActionModal/DeviceActionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ const DeviceActionModal = ({

const isVerifyAddress = actionType === "verifyAddress";
const iconSrc = isVerifyAddress ? verifyAddressIcon : content.icon;
const iconStyle = isVerifyAddress ? { width: "203px", height: "157px" } : {};
const iconStyle = isVerifyAddress
? { width: "173px", height: "137px", marginBottom: "-20px" }
: {};

const modalContent = {
image: (
Expand All @@ -78,7 +80,7 @@ const DeviceActionModal = ({
className={`${baseStyles.title} ${styles.title}`}
style={{
textAlign: hasListItems ? "left" : "center",
marginLeft: hasListItems ? "25px" : "7%",
marginLeft: hasListItems ? "25px" : "0px",
}}
>
{actionTitle(deviceType)[actionType]}
Expand Down

0 comments on commit d718da8

Please sign in to comment.