()
| 81 | const linux = createMemo(() => platform.platform === "desktop" && platform.os === "linux") |
| 82 | const web = createMemo(() => platform.platform === "web") |
| 83 | const zoom = () => platform.webviewZoom?.() ?? 1 |
| 84 | const titlebarZoom = () => (windows() ? Math.max(zoom(), minTitlebarZoom) : zoom()) |
| 85 | const counterZoom = () => (windows() && titlebarZoom() < 1 ? 1 / titlebarZoom() : 1) |
| 86 | const minHeight = () => { |
no outgoing calls
no test coverage detected