diff options
| author | Henry Jameson <me@hjkos.com> | 2022-02-04 14:20:56 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-02-04 14:20:56 +0200 |
| commit | d361a4d7dc18bd7c722ed76a894ebee8e5a50ed5 (patch) | |
| tree | f3c4c272c22494d66f8e42a68f5bbb3c31c56938 /src/components/mention_link | |
| parent | 571e73a346996f1bcdecb6545b44351a65fee3cb (diff) | |
fix overflows
Diffstat (limited to 'src/components/mention_link')
| -rw-r--r-- | src/components/mention_link/mention_link.scss | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/mention_link/mention_link.scss b/src/components/mention_link/mention_link.scss index 23d18f59..c7db7fb9 100644 --- a/src/components/mention_link/mention_link.scss +++ b/src/components/mention_link/mention_link.scss @@ -3,12 +3,12 @@ .MentionLink { position: relative; white-space: normal; - display: inline-flex; + display: inline; color: var(--link); & .new, & .original { - display: inline-block; + display: inline; border-radius: 2px; } @@ -38,8 +38,8 @@ user-select: all; } - .short.-with-tooltip, - .you { + & .short.-with-tooltip, + & .you { user-select: none; } @@ -48,6 +48,10 @@ white-space: nowrap; } + .shortName { + white-space: normal; + } + .new { &.-you { & .shortName, |
