Skip to content

Commit

Permalink
fix: align socials select component (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodiaslobo authored Mar 2, 2024
1 parent 08ebaa0 commit 9f5189e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion apps/app/pages/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,15 @@ function Settings() {
key={item}
value={item.toLocaleLowerCase()}
>
{getIcon(item)} {item}
<div
style={{
display: "flex",
alignItems: "center",
gap: "5px",
}}
>
{getIcon(item)} {item}
</div>
</Option>
))}
</Select>
Expand Down

0 comments on commit 9f5189e

Please sign in to comment.