Skip to content

Commit b999287

Browse files
committed
fix: align socials select component
1 parent 08ebaa0 commit b999287

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

apps/app/pages/settings.tsx

+9-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,15 @@ function Settings() {
343343
key={item}
344344
value={item.toLocaleLowerCase()}
345345
>
346-
{getIcon(item)} {item}
346+
<div
347+
style={{
348+
display: "flex",
349+
alignItems: "center",
350+
gap: "5px",
351+
}}
352+
>
353+
{getIcon(item)} {item}
354+
</div>
347355
</Option>
348356
))}
349357
</Select>

0 commit comments

Comments
 (0)