Skip to content

Commit 56087c4

Browse files
authored
fixed descriptive socials showing in rows (#384)
1 parent 2957e8e commit 56087c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/connect/src/components/Connect/Connect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ export const Connect = (props: ConnectProps) => {
416416
<div className="flex mt-6 gap-6 flex-col">
417417
<>
418418
{showSocialConnectorSection && (
419-
<div className="flex gap-2 justify-center items-center">
419+
<div className={`flex gap-2 justify-center items-center ${descriptiveSocials ? 'flex-col' : 'flex-row'}`}>
420420
{socialAuthConnectors.slice(0, socialConnectorsPerRow).map(connector => {
421421
return (
422422
<div className="w-full" key={connector.uid}>

0 commit comments

Comments
 (0)