Skip to content

Commit

Permalink
feat: add margin for SettingItem extra element
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko233 committed Feb 29, 2024
1 parent 1da9951 commit fa1dcdd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/setting/mods/setting-comp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ export const SettingItem: React.FC<ItemProps> = (props) => {
) : (
<Box sx={{ display: "flex", alignItems: "center" }}>
<span>{label}</span>
{extra}
<span
style={{
marginLeft: "8px",
}}
>
{extra}
</span>
</Box>
);

Expand Down

0 comments on commit fa1dcdd

Please sign in to comment.