Skip to content

Commit

Permalink
fix: return paddings to settings cards
Browse files Browse the repository at this point in the history
  • Loading branch information
asabotovich committed Apr 17, 2024
1 parent 9035b1f commit 624de63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SettingsContent/SettingsContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface SettingsCardProps {

export const SettingsCard = ({ view = 'default', className, children, ...props }: SettingsCardProps) => {
return (
<FormCard className={cn(colorsMap[view], className)} {...props}>
<FormCard className={cn(s.SettingsCard, colorsMap[view], className)} {...props}>
{children}
</FormCard>
);
Expand Down

0 comments on commit 624de63

Please sign in to comment.