Compare commits
No commits in common. "06de56b4afc42206ad49908ccd205590c91b0054" and "cefa4a1b83529352f1daffd0e5ca3914d4f825f1" have entirely different histories.
06de56b4af
...
cefa4a1b83
4 changed files with 35 additions and 36 deletions
|
@ -4,7 +4,7 @@
|
||||||
--safe-area-inset-bottom: env(safe-area-inset-bottom);
|
--safe-area-inset-bottom: env(safe-area-inset-bottom);
|
||||||
--safe-area-inset-right: env(safe-area-inset-right);
|
--safe-area-inset-right: env(safe-area-inset-right);
|
||||||
background-color: var(--tutu-color-surface, transparent);
|
background-color: var(--tutu-color-surface, transparent);
|
||||||
overscroll-behavior-block: none;
|
overscroll-behavior-block: contain;
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-emoji {
|
.custom-emoji {
|
||||||
|
|
|
@ -38,6 +38,7 @@ export function useTimeline(
|
||||||
async ([tl], info) => {
|
async ([tl], info) => {
|
||||||
let tlChanged = false;
|
let tlChanged = false;
|
||||||
if (otl !== tl) {
|
if (otl !== tl) {
|
||||||
|
console.debug("timeline reset");
|
||||||
npager = opager = undefined;
|
npager = opager = undefined;
|
||||||
otl = tl;
|
otl = tl;
|
||||||
tlChanged = true;
|
tlChanged = true;
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 560px;
|
max-width: 560px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: contain;
|
||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
max-height: 100dvh;
|
max-height: 100dvh;
|
||||||
|
|
||||||
|
|
|
@ -430,7 +430,6 @@ const Home: ParentComponent = (props) => {
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<TimeSourceProvider value={now}>
|
<TimeSourceProvider value={now}>
|
||||||
<Show when={!!client()}>
|
|
||||||
<div class="panel-list" ref={panelList!}>
|
<div class="panel-list" ref={panelList!}>
|
||||||
<div class="tab-panel">
|
<div class="tab-panel">
|
||||||
<div>
|
<div>
|
||||||
|
@ -465,7 +464,6 @@ const Home: ParentComponent = (props) => {
|
||||||
</div>
|
</div>
|
||||||
<div></div>
|
<div></div>
|
||||||
</div>
|
</div>
|
||||||
</Show>
|
|
||||||
</TimeSourceProvider>
|
</TimeSourceProvider>
|
||||||
<Suspense>
|
<Suspense>
|
||||||
<HeroSourceProvider value={[heroSrc, setHeroSrc]}>
|
<HeroSourceProvider value={[heroSrc, setHeroSrc]}>
|
||||||
|
|
Loading…
Reference in a new issue