Resize ColoredIcon

[MAILPOET-4418]
This commit is contained in:
David Remer
2022-07-29 12:58:02 +03:00
committed by Veljko V
parent 7fe4104af8
commit 1fbf29b7f6
2 changed files with 5 additions and 5 deletions

View File

@@ -36,7 +36,7 @@
.mailpoet-automation-colored-icon {
box-sizing: content-box;
padding: 10px;
padding: 12px;
position: relative;
.mailpoet-automation-colored-icon-background {

View File

@@ -13,8 +13,8 @@ function getIcon(step: StepData): JSX.Element | null {
<ColoredIcon
foreground="#2271b1"
background="#f0f6fc"
width="20px"
height="20px"
width="23px"
height="23px"
icon={TriggerIcon()}
/>
);
@@ -22,8 +22,8 @@ function getIcon(step: StepData): JSX.Element | null {
const selectedStepType = select(store).getStepType(step.key);
return selectedStepType ? (
<ColoredIcon
width="20px"
height="20px"
width="23px"
height="23px"
foreground={selectedStepType.foreground}
background={selectedStepType.background}
icon={selectedStepType.icon}