feat: better header for public note

This commit is contained in:
Julien Calixte
2026-02-16 23:56:57 +01:00
parent 3e495618e1
commit c3095a545e
4 changed files with 48 additions and 43 deletions

View File

@@ -52,8 +52,8 @@ const author = computedAsync(async () => getUniqueAka(did.value))
display: flex;
flex: 1;
flex-direction: column;
margin-left: 1rem;
margin-right: 1rem;
padding-left: 1rem;
padding-right: 1rem;
h1 {
margin-top: 1rem;
@@ -84,5 +84,9 @@ const author = computedAsync(async () => getUniqueAka(did.value))
justify-content: flex-end;
}
}
@media screen and (min-width: 769px) {
overflow-y: auto;
}
}
</style>