fix: allow selecting text on profiles

closes #433
This commit is contained in:
Paul Makles
2022-05-09 21:58:08 +01:00
parent 0326d9ae44
commit 65acc4e1de
3 changed files with 8 additions and 2 deletions

View File

@@ -100,6 +100,10 @@
background: var(--primary-background);
border-radius: 0 0 var(--border-radius) var(--border-radius);
.markdown {
user-select: text;
}
.empty {
display: flex;
gap: 10px;

View File

@@ -338,7 +338,9 @@ export const UserProfile = observer(
<Text id="app.special.popovers.user_profile.sub.information" />
</div>
)}
<Markdown content={profile?.content} />
<div className={styles.markdown}>
<Markdown content={profile?.content} />
</div>
{/*<div className={styles.category}><Text id="app.special.popovers.user_profile.sub.connections" /></div>*/}
</div>
) : (