Skip to content

Commit

Permalink
fix(FOROME-1467): Fixed card paddings (#883)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyUstyumenko authored Aug 15, 2022
1 parent 6cb2d71 commit bdcf9d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ export const ExistingCandidatesCard = observer((props: ICardProps) => {
return (
<Card
isNeedToAnimate={wizardStore.isNeedToAnimateCard(id)}
className="mt-4"
style={{ paddingLeft: 0, paddingRight: 0 }}
className="mt-4 !px-0"
position={position}
>
<CardTitle text={title} className="px-4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const PresetsCard = observer(
return (
<Card
isNeedToAnimate={wizardStore.isNeedToAnimateCard(id)}
style={{ paddingLeft: 0, paddingRight: 0 }}
className="!px-0"
position={position}
>
<CardTitle text={title} className="px-4" />
Expand Down

0 comments on commit bdcf9d6

Please sign in to comment.