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
:to="{
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"
>{{ note.title }}</router-link
@@ -87,6 +91,7 @@ const author = computedAsync(async () => getAuthor(did.value))
}
a {
display: inline;
text-align: left;
}