diff options
| author | Henry Jameson <me@hjkos.com> | 2021-06-08 13:42:16 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2021-06-08 13:42:16 +0300 |
| commit | 73127f0e2587ae2e06c3480451e9ea7fce3ce4c7 (patch) | |
| tree | 65720a865014e246b0f6f875e38ef95bb2374789 /src | |
| parent | 9ea370033af450c0d5e4650a7c10f0e1ffec911c (diff) | |
fix empty spaces again
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/mention_link/mention_link.scss | 5 | ||||
| -rw-r--r-- | src/components/rich_content/rich_content.jsx | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/components/mention_link/mention_link.scss b/src/components/mention_link/mention_link.scss index 261aeaef..5b5218f7 100644 --- a/src/components/mention_link/mention_link.scss +++ b/src/components/mention_link/mention_link.scss @@ -3,7 +3,6 @@ white-space: normal; display: inline-block; color: var(--link); - margin-right: 0.25em; & .new, & .original { @@ -12,7 +11,7 @@ } .original { - opacity: 0.5; + margin-right: 0.25em; } .full { @@ -39,6 +38,8 @@ } .new { + margin-right: 0.25em; + &.-you { & .shortName, & .full { diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx index 26a64f28..bb7ae739 100644 --- a/src/components/rich_content/rich_content.jsx +++ b/src/components/rich_content/rich_content.jsx @@ -46,8 +46,8 @@ export default Vue.component('RichContent', { const processItem = (item) => { // Handle text noes - just add emoji if (typeof item === 'string') { - const emptyText = item.trim() - if (!emptyText) { + const emptyText = item.trim() === '' + if (emptyText) { return encounteredText ? item : item.trim() } let unescapedItem = unescape(item) |
