Compare commits

...

4 commits

Author SHA1 Message Date
06de56b4af Merge branch 'master' into feat-toot-composer 2024-09-28 07:30:02 +00:00
thislight
825baba088
disable rubberband in :root and bottom sheets
All checks were successful
/ depoly (push) Successful in 55s
2024-09-27 18:10:23 +08:00
thislight
11c31f7f42
timelines: minor clean up
All checks were successful
/ depoly (push) Successful in 1m5s
2024-09-27 18:07:10 +08:00
thislight
bf06cfe2e1
Home: fix could not jump to sign in page 2024-09-27 18:06:44 +08:00
4 changed files with 34 additions and 33 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: contain;
overscroll-behavior-block: none;
}
.custom-emoji {

View file

@ -38,7 +38,6 @@ 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: contain;
overscroll-behavior: none;
max-height: 100vh;
max-height: 100dvh;

View file

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