Merge pull request #6693 from mempool/jramos/x-viewing
Some checks are pending
Backend Integration Tests with MariaDB / Backend Integration Tests - node 24.13.0 (push) Waiting to run
CI Pipeline for the Backend and Frontend / Backend (dev) - node 24.13.0 (push) Waiting to run
CI Pipeline for the Backend and Frontend / Backend (prod) - node 24.13.0 (push) Waiting to run
CI Pipeline for the Backend and Frontend / Cache assets for builds (push) Waiting to run
CI Pipeline for the Backend and Frontend / Frontend (dev) - node 24.13.0 (push) Blocked by required conditions
CI Pipeline for the Backend and Frontend / Frontend (prod) - node 24.13.0 (push) Blocked by required conditions
CI Pipeline for the Backend and Frontend / E2E tests for liquid (push) Blocked by required conditions
CI Pipeline for the Backend and Frontend / E2E tests for mempool (push) Blocked by required conditions
CI Pipeline for the Backend and Frontend / E2E tests for testnet4 (push) Blocked by required conditions
CI Pipeline for the Backend and Frontend / Validate generated backend Docker JSON (push) Waiting to run
Supply Chain Audit / Backend install-script audit (push) Waiting to run
Supply Chain Audit / Frontend install-script audit (push) Waiting to run

fix: viewing link in x app
This commit is contained in:
mononaut 2026-08-13 17:03:03 +08:00 committed by GitHub
commit 9b25ee378b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -20,6 +20,14 @@
& > * {
flex-shrink: 0;
}
// Xs iOS in-app browser overlays bottom controls without reporting a safe-area inset.
// Its incorrect svh value reveals the obscured strip via svh - dvh so correct browsers collapse it to zero.
&::after {
content: '';
flex-shrink: 0;
height: max(0px, 100svh - 100dvh);
}
}
.heading {