mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 12:26:02 +01:00
fix: 🐛 Fix missing custom scrollbars in places
This commit is contained in:
parent
2cc3d2ea7a
commit
5c416ce793
|
|
@ -1,14 +1,15 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="max-h-dvh overflow-y-scroll w-full">
|
<OverlayScrollbarsComponent class="max-h-dvh overflow-y-auto w-full">
|
||||||
<SocialElementsUsersAccount :account="account ?? undefined" />
|
|
||||||
<TimelinesTimelineScroller>
|
<TimelinesTimelineScroller>
|
||||||
|
<SocialElementsUsersAccount :account="account ?? undefined" />
|
||||||
<TimelinesAccount :id="accountId" :key="accountId" />
|
<TimelinesAccount :id="accountId" :key="accountId" />
|
||||||
</TimelinesTimelineScroller>
|
</TimelinesTimelineScroller>
|
||||||
</div>
|
</OverlayScrollbarsComponent>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { Account } from "~/types/mastodon/account";
|
import type { Account } from "~/types/mastodon/account";
|
||||||
|
import { OverlayScrollbarsComponent } from "#imports";
|
||||||
|
|
||||||
definePageMeta({
|
definePageMeta({
|
||||||
layout: "app",
|
layout: "app",
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="max-h-dvh overflow-y-scroll">
|
<OverlayScrollbarsComponent :defer="true" class="max-h-dvh overflow-y-auto">
|
||||||
<TimelinesTimelineScroller>
|
<TimelinesTimelineScroller>
|
||||||
<TimelinesPublic />
|
<TimelinesPublic />
|
||||||
</TimelinesTimelineScroller>
|
</TimelinesTimelineScroller>
|
||||||
</div>
|
</OverlayScrollbarsComponent>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { OverlayScrollbarsComponent } from "#imports";
|
||||||
definePageMeta({
|
definePageMeta({
|
||||||
layout: "app",
|
layout: "app",
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue