style(notes): constrain public note list to a centered column
All checks were successful
CI / verify (push) Successful in 2m4s

Full-bleed rows flung the author/date meta to the far edge on wide
screens. Cap the list and tabs to a 42rem centered column, stack the
meta tight under the title, and drop the button padding on titles.
This commit is contained in:
Julien Calixte
2026-06-29 21:38:43 +02:00
parent 9d27aa024f
commit 57ef4a9e50
2 changed files with 15 additions and 6 deletions

View File

@@ -45,8 +45,9 @@ defineSlots<{
<style scoped lang="scss"> <style scoped lang="scss">
ul { ul {
padding-left: 1rem; width: 100%;
padding-right: 1rem; max-width: 42rem;
margin-inline: auto;
} }
li { li {
@@ -57,17 +58,19 @@ li {
} }
a { a {
padding-left: 0; padding: 0;
min-height: 0;
height: auto;
text-align: left; text-align: left;
font-size: 1.2rem; font-size: 1.2rem;
line-height: 1.5rem; line-height: 1.5rem;
} }
.alias { .alias {
text-align: right; text-align: left;
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-start;
margin-top: 0.5rem; margin-top: 0.125rem;
} }
} }
</style> </style>

View File

@@ -130,6 +130,12 @@ const openProfile = () => {
gap: 1rem; gap: 1rem;
} }
.tabs {
width: 100%;
max-width: 42rem;
margin-inline: auto;
}
h1 { h1 {
flex: 1; flex: 1;
text-align: center; text-align: center;