fix: viewing link in x app

This commit is contained in:
jramos0 2026-08-11 02:34:26 -06:00
parent 29afce710d
commit 7068fe6ae0

View file

@ -20,6 +20,14 @@
& > * { & > * {
flex-shrink: 0; 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 { .heading {