1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed social account settings role buttons

This commit is contained in:
Fedor Katurov 2020-08-26 13:15:10 +07:00
parent 46542632b5
commit aa62dcfbcd
3 changed files with 19 additions and 4 deletions

View file

@ -122,11 +122,23 @@ const ProfileAccountsUnconnected: FC<IProps> = ({
)}
<Group horizontal className={styles.buttons}>
<Button size="small" iconLeft="vk" color="gray" onClick={openOauthWindow('vkontakte')}>
<Button
size="small"
type="button"
iconLeft="vk"
color="gray"
onClick={openOauthWindow('vkontakte')}
>
Вконтакте
</Button>
<Button size="small" iconLeft="google" color="gray" onClick={openOauthWindow('google')}>
<Button
size="small"
type="button"
iconLeft="google"
color="gray"
onClick={openOauthWindow('google')}
>
Google
</Button>
</Group>