- 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.
15 lines
482 B
TypeScript
15 lines
482 B
TypeScript
declare module "*.vue" {
|
|
import type { DefineComponent } from "vue"
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|
|
|
|
declare module "pouchdb-adapter-indexeddb"
|
|
declare module "@toycode/markdown-it-class"
|
|
declare module "markdown-it-block-embed"
|
|
declare module "markdown-it-checkbox"
|
|
declare module "markdown-it-regexp"
|
|
declare module "markdown-it-iframe"
|
|
declare module "@rushstack/eslint-patch/modern-module-resolution"
|
|
declare module "pastel-color"
|