design: align left for list

This commit is contained in:
Julien Calixte
2026-02-19 21:43:56 +01:00
parent 801832c6e5
commit 4edfba77ed
2 changed files with 7 additions and 1 deletions

View File

@@ -32,7 +32,11 @@ const author = computedAsync(async () => getAuthor(did.value))
<router-link <router-link
:to="{ :to="{
name: 'PublicNoteView', name: 'PublicNoteView',
params: { did: note.did, rkey: note.rkey, slug: slugify(note.title) }, params: {
did: note.did,
rkey: note.rkey,
slug: slugify(note.title),
},
}" }"
class="btn btn-link" class="btn btn-link"
>{{ note.title }}</router-link >{{ note.title }}</router-link
@@ -87,6 +91,7 @@ const author = computedAsync(async () => getAuthor(did.value))
} }
a { a {
display: inline;
text-align: left; text-align: left;
} }

View File

@@ -99,6 +99,7 @@ const { notes, isLoading, canLoadMore, onLoadMore, getAuthor } =
} }
a { a {
display: inline;
text-align: left; text-align: left;
} }