- Restore explicit overflow-y:auto on #main-app for mobile (removed in
63f5d64) — implicit coercion from overflow-x:auto is not reliable in
all Safari/WebKit versions.
- Override position:sticky on .readme to position:relative on mobile.
The desktop sticky (left:0) is correct for horizontal scroll, but on
mobile vertical scroll it pinned the 100dvh-tall readme across the
entire viewport, hiding all stacked notes behind it.
49 lines
988 B
Vue
49 lines
988 B
Vue
<script lang="ts" setup>
|
|
import NewVersion from "@/components/NewVersion.vue"
|
|
import { useATProtoLogin } from "@/hooks/useATProtoLogin.hook"
|
|
import { useGitHubLogin } from "@/hooks/useGitHubLogin.hook"
|
|
|
|
const { isReady } = useGitHubLogin()
|
|
const { isATProtoReady } = useATProtoLogin()
|
|
</script>
|
|
|
|
<template>
|
|
<div id="main-app" class="prose">
|
|
<router-view v-if="isReady && isATProtoReady" />
|
|
|
|
<new-version />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
#main-app {
|
|
height: 100dvh;
|
|
width: 100%;
|
|
max-width: none;
|
|
display: flex;
|
|
flex: 1;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
#main-app {
|
|
overflow-y: auto;
|
|
}
|
|
}
|
|
|
|
::view-transition-old(root),
|
|
::view-transition-new(root) {
|
|
animation-duration: 0.25s;
|
|
}
|
|
|
|
::view-transition-group(remanso-logo) {
|
|
animation-duration: 0.4s;
|
|
animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
|
|
}
|
|
|
|
::view-transition-old(remanso-logo),
|
|
::view-transition-new(remanso-logo) {
|
|
object-fit: contain;
|
|
}
|
|
</style>
|