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

fixed empty social accounts appearance

This commit is contained in:
Fedor Katurov 2020-09-08 09:34:58 +07:00
parent 600b8bb1e8
commit bc09810802
2 changed files with 2 additions and 1 deletions

View file

@ -111,7 +111,7 @@ const ProfileAccountsUnconnected: FC<IProps> = ({
</div> </div>
</div> </div>
<div className={styles.account__name}>{it.name}</div> <div className={styles.account__name}>{it.name || it.id}</div>
<div className={styles.account__drop}> <div className={styles.account__drop}>
<Icon icon="close" size={22} onClick={() => authDropSocial(it.provider, it.id)} /> <Icon icon="close" size={22} onClick={() => authDropSocial(it.provider, it.id)} />

View file

@ -50,6 +50,7 @@
background-size: cover; background-size: cover;
border-radius: 2px; border-radius: 2px;
position: relative; position: relative;
background: $content_bg;
} }
&__provider { &__provider {