diff --git a/ROADMAP.md b/ROADMAP.md index fa2be597..8e9fe43e 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,6 +1,5 @@ # Current -- [ ] Try adding boxes/separation on feeds based on user feedback - [ ] Strip zero width spaces from compose - [ ] Fix iOS/safari/firefox - [ ] Add dynamic title tag diff --git a/src/partials/Card.svelte b/src/partials/Card.svelte index 2f9540a3..978355e5 100644 --- a/src/partials/Card.svelte +++ b/src/partials/Card.svelte @@ -9,10 +9,11 @@
diff --git a/src/views/notes/Feed.svelte b/src/views/notes/Feed.svelte index e212dc05..6c75dcaa 100644 --- a/src/views/notes/Feed.svelte +++ b/src/views/notes/Feed.svelte @@ -105,7 +105,7 @@ {/if} -
+
{#each notes as note (note.id)} {/each} diff --git a/src/views/notes/Note.svelte b/src/views/notes/Note.svelte index 9071a8e8..a9b18bdb 100644 --- a/src/views/notes/Note.svelte +++ b/src/views/notes/Note.svelte @@ -53,6 +53,7 @@ let showRelays = false const {profile} = user + const borderColor = invertColors ? "medium" : "dark" const links = extractUrls(note.content) const showEntire = anchorId === note.id const interactive = !anchorId || !showEntire @@ -302,11 +303,11 @@ if (lastChild) { const height = ( - getHeight(noteContainer) - + getHeight(replyContainer) + 64 + getHeight(childrenContainer) - getHeight(lastChild) - getHeight(lastChild.nextElementSibling) + - (lastChild.nextElementSibling ? 16 : 0) ) border.style = `height: ${height - 21}px` @@ -328,10 +329,9 @@ {#if $person}
-