Compare commits

..

No commits in common. "06de56b4afc42206ad49908ccd205590c91b0054" and "cefa4a1b83529352f1daffd0e5ca3914d4f825f1" have entirely different histories.

4 changed files with 35 additions and 36 deletions

View file

@ -4,7 +4,7 @@
--safe-area-inset-bottom: env(safe-area-inset-bottom);
--safe-area-inset-right: env(safe-area-inset-right);
background-color: var(--tutu-color-surface, transparent);
overscroll-behavior-block: none;
overscroll-behavior-block: contain;
}
.custom-emoji {

View file

@ -38,6 +38,7 @@ export function useTimeline(
async ([tl], info) => {
let tlChanged = false;
if (otl !== tl) {
console.debug("timeline reset");
npager = opager = undefined;
otl = tl;
tlChanged = true;

View file

@ -11,7 +11,7 @@
width: 100%;
max-width: 560px;
border-radius: 2px;
overscroll-behavior: none;
overscroll-behavior: contain;
max-height: 100vh;
max-height: 100dvh;

View file

@ -430,7 +430,6 @@ const Home: ParentComponent = (props) => {
}
>
<TimeSourceProvider value={now}>
<Show when={!!client()}>
<div class="panel-list" ref={panelList!}>
<div class="tab-panel">
<div>
@ -465,7 +464,6 @@ const Home: ParentComponent = (props) => {
</div>
<div></div>
</div>
</Show>
</TimeSourceProvider>
<Suspense>
<HeroSourceProvider value={[heroSrc, setHeroSrc]}>