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:
parent
600b8bb1e8
commit
bc09810802
2 changed files with 2 additions and 1 deletions
|
@ -111,7 +111,7 @@ const ProfileAccountsUnconnected: FC<IProps> = ({
|
|||
</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}>
|
||||
<Icon icon="close" size={22} onClick={() => authDropSocial(it.provider, it.id)} />
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
background-size: cover;
|
||||
border-radius: 2px;
|
||||
position: relative;
|
||||
background: $content_bg;
|
||||
}
|
||||
|
||||
&__provider {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue