fix: better header

This commit is contained in:
Julien Calixte
2026-03-14 11:41:59 +01:00
parent 263f11b7e5
commit 5e69fc9d02
4 changed files with 21 additions and 31 deletions

View File

@@ -6,23 +6,13 @@ const goHome = () => router.push({ name: "Home" })
</script> </script>
<template> <template>
<a class="btn btn-sm" @click="goHome"> <a class="btn btn-ghost btn-circle btn-lg" @click="goHome">
<svg <img src="/favicon.png" alt="Remanso icon" />
xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icon-tabler-home"
width="28"
height="28"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M5 12l-2 0l9 -9l9 9l-2 0" />
<path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-7" />
<path d="M9 21v-6a2 2 0 0 1 2 -2h2a2 2 0 0 1 2 2v6" />
</svg>
</a> </a>
</template> </template>
<style>
img {
box-shadow: none;
}
</style>

View File

@@ -59,9 +59,7 @@ const author = computedAsync(async () => getAuthor(did.value))
} }
.back-button { .back-button {
display: flex; position: absolute;
gap: 0.5rem;
align-items: center;
} }
@media screen and (min-width: 769px) { @media screen and (min-width: 769px) {

View File

@@ -33,8 +33,6 @@ const following = useFollowingNoteList(follows, followingEnabled)
<main class="public-note-list-view"> <main class="public-note-list-view">
<div class="header"> <div class="header">
<home-button class="back-button" /> <home-button class="back-button" />
<h1><img src="/favicon.png" alt="Remanso icon" /></h1>
<sign-in-atproto />
</div> </div>
<div v-if="isLoggedIn" role="tablist" class="tabs tabs-border"> <div v-if="isLoggedIn" role="tablist" class="tabs tabs-border">
@@ -52,6 +50,7 @@ const following = useFollowingNoteList(follows, followingEnabled)
@click="tab = 'following'" @click="tab = 'following'"
>Following</a >Following</a
> >
<sign-in-atproto class="handle" />
</div> </div>
<PublicNoteList <PublicNoteList
@@ -101,12 +100,14 @@ const following = useFollowingNoteList(follows, followingEnabled)
</template> </template>
<style scoped lang="scss"> <style scoped lang="scss">
h1 { .tabs {
img { position: relative;
width: 64px;
height: 64px;
box-shadow: none;
} }
.handle {
position: absolute;
right: 0;
align-self: center;
} }
.public-note-list-view { .public-note-list-view {
@@ -117,7 +118,7 @@ h1 {
padding-right: 1rem; padding-right: 1rem;
.header { .header {
margin-top: 1rem; margin: 0.5rem auto 0;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;

View File

@@ -128,7 +128,6 @@ watch(
:fallback="{ name: 'PublicNoteListByDidView', params: { did } }" :fallback="{ name: 'PublicNoteListByDidView', params: { did } }"
:prefer-fallback="false" :prefer-fallback="false"
/> />
<theme-swap />
<span <span
class="badge badge-author badge-soft badge-accent" class="badge badge-author badge-soft badge-accent"
@@ -150,7 +149,9 @@ watch(
</template> </template>
</span> </span>
<div class="badge skeleton h-4 w-50" v-else></div> <div class="badge skeleton h-4 w-50" v-else></div>
<theme-swap />
</div> </div>
<div class="meta"></div>
<div class="repo-title-breadcrumb"> <div class="repo-title-breadcrumb">
<a <a
class="title-stacked-note-link" class="title-stacked-note-link"