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

@@ -58,8 +58,8 @@ const { notes, isLoading, canLoadMore, onLoadMore, getAlias } =
display: flex;
flex: 1;
flex-direction: column;
margin-left: 1rem;
margin-right: 1rem;
padding-left: 1rem;
padding-right: 1rem;
h1 {
margin-top: 1rem;
@@ -90,5 +90,9 @@ const { notes, isLoading, canLoadMore, onLoadMore, getAlias } =
justify-content: flex-end;
}
}
@media screen and (min-width: 769px) {
overflow-y: auto;
}
}
</style>