fix theme editor sidebar untappable on mobile
All checks were successful
deploy / deploy (push) Successful in 3m40s

The shop header preview's absolute-positioned overlay escaped the
preview frame and covered the sidebar controls on small viewports.
Adding position: relative to .theme-preview-frame contains it.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey 2026-03-01 23:36:24 +00:00
parent 3c9a428d09
commit fadcf57286

View File

@ -3883,6 +3883,7 @@
border-radius: 0 0 0.5rem 0.5rem; border-radius: 0 0 0.5rem 0.5rem;
border: 1px solid color-mix(in oklch, var(--t-text-primary) 20%, transparent); border: 1px solid color-mix(in oklch, var(--t-text-primary) 20%, transparent);
border-top: none; border-top: none;
position: relative;
} }
/* Upload cancel button */ /* Upload cancel button */