This commit is contained in:
tamaina 2023-02-12 08:42:34 +00:00
parent 19c204ea03
commit 7deb4691fb
1 changed files with 9 additions and 1 deletions

View File

@ -100,7 +100,7 @@
<XPhotos :key="user.id" :user="user"/>
<XActivity :key="user.id" :user="user"/>
</template>
<XNotes :no-gap="true" :pagination="pagination"/>
<XNotes :class="$style.tl" :no-gap="true" :pagination="pagination"/>
</div>
</div>
<div v-if="!narrow" class="sub _gaps" style="container-type: inline-size;">
@ -522,3 +522,11 @@ onUnmounted(() => {
}
}
</style>
<style lang="scss" module>
.tl {
background: var(--bg);
border-radius: var(--radius);
overflow: clip;
}
</style>