chore(debug): add temporary scroll overlay for mobile diagnosis
This commit is contained in:
20
src/App.vue
20
src/App.vue
@@ -13,6 +13,7 @@ const { isATProtoReady } = useATProtoLogin()
|
||||
|
||||
<new-version />
|
||||
</div>
|
||||
<pre id="scroll-debug"></pre>
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
@@ -45,4 +46,23 @@ const { isATProtoReady } = useATProtoLogin()
|
||||
::view-transition-new(remanso-logo) {
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
#scroll-debug {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 9999;
|
||||
margin: 0;
|
||||
padding: 4px 6px;
|
||||
background: rgba(0, 0, 0, 0.75);
|
||||
color: #fff;
|
||||
font: 10px/1.3 ui-monospace, monospace;
|
||||
white-space: pre;
|
||||
pointer-events: none;
|
||||
max-width: 100vw;
|
||||
}
|
||||
|
||||
#scroll-debug:empty {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user