Padding or spacing that looks right on desktop feels excessive on a narrow mobile screen.
⚡ Quick Fix (TL;DR)
The Culprit: Generous desktop spacing can eat up a disproportionate amount of a small mobile viewport.
The Fix: Reduce internal spacing specifically at mobile widths, using the site's standard 600px breakpoint.
@media (max-width: 600px) {
.example { padding: 20px; }
} Was this helpful? Thanks for the feedback!
Tagged in :
More from the field
Bisect to an Empty Baseline Before Trusting Any Single Theory
.
Multiple plausible-sounding theories for a bug each turned out to be wrong when actually tested – time was spent building fixes…
A Security Dashboard’s Activity Log Can Lag a Full Day Behind Real Time
.
Trying to check a security tool’s activity log for an event that had just happened showed nothing at all.