mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 21:06:42 +07:00
fixed boris caption
This commit is contained in:
parent
dac27ca9d8
commit
32a2a0567e
5 changed files with 17 additions and 3 deletions
|
@ -17,7 +17,12 @@ const ProfileDescriptionUnconnected: FC<IProps> = ({ profile: { user, is_loading
|
|||
|
||||
return (
|
||||
<div className={styles.wrap}>
|
||||
{user.description && <div className={styles.content}>{formatText(user.description)}</div>}
|
||||
{user.description && (
|
||||
<div
|
||||
className={styles.content}
|
||||
dangerouslySetInnerHTML={{ __html: formatText(user.description) }}
|
||||
/>
|
||||
)}
|
||||
{!user.description && (
|
||||
<div className={styles.placeholder}>
|
||||
{user.fullname || user.username} пока ничего не рассказал о себе
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
.content {
|
||||
padding: $gap * 2;
|
||||
min-height: 200px;
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue