Base44 mobile

Modals and Popups Cut Off on Small Mobile Screens

Modals, popups, and dialog boxes in your Base44 app are unusable on mobile devices. The modal content extends beyond the screen with no way to scroll, action buttons at the bottom are hidden below the viewport, and users can't complete the action the modal was designed for.

Modals are used for critical interactions in Base44 apps: editing records, confirming deletions, viewing details, and filling out forms. When they're broken on mobile, users are stuck and can't complete core workflows.

The issue is especially bad on smaller phones (iPhone SE, older Android devices) and when the device keyboard opens inside a modal form, shrinking the visible area to almost nothing.

Error Messages You Might See

Submit button not visible on mobile modal Cannot scroll modal content on phone Modal form fields hidden behind keyboard Modal extends beyond screen boundaries
Submit button not visible on mobile modalCannot scroll modal content on phoneModal form fields hidden behind keyboardModal extends beyond screen boundaries

Common Causes

  • Fixed height exceeding viewport — Modals have a fixed height (e.g., 600px) that exceeds small phone screens (667px or less)
  • No internal scrolling — Modal content doesn't scroll, so content below the fold is permanently hidden
  • Centered positioning ignores viewport — CSS centering with transform places the modal partially off-screen on short viewports
  • Keyboard pushes modal up — When the keyboard opens for form inputs, the modal shifts up and the top is cut off
  • Padding consuming too much space — Large padding inside the modal wastes valuable screen real estate on mobile

How to Fix It

  1. Use max-height: 90vh with overflow-y: auto — Limit modal height to 90% of viewport and make the content scrollable
  2. Make modals full-screen on mobile — Below 768px, switch modals to full-screen sheets that cover the entire viewport with proper scrolling
  3. Stick action buttons to the bottom — Use position: sticky; bottom: 0 on the button row so it's always visible regardless of scroll position
  4. Reduce padding on mobile — Use smaller internal padding (12px instead of 24px) on screens below 640px
  5. Handle keyboard appearance — Use the Visual Viewport API to adjust modal position when the keyboard opens

Real developers can help you.

hanson1014 hanson1014 Full-stack developer experienced in fixing and deploying AI-generated apps from Lovable, Bolt.new, Cursor, and Replit. I specialize in debugging Supabase integration issues (auth flows, RLS policies, database connections), fixing broken deployments, resolving routing/blank screen problems, and cleaning up messy React/Vite codebases. I also build production apps with the Claude API and have shipped a Mac desktop dev tool (Nexterm from scratch. Based in Hong Kong, fast turnaround. Richard McSorley Richard McSorley Full-Stack Software Engineer with 8+ years building high-performance applications for enterprise clients. Shipped production systems at Walmart (4,000+ stores), Cigna (20M+ users), and Arkansas Blue Cross. 5 patents in retail/supply chain tech. Currently focused on AI integrations, automation tools, and TypeScript-first architectures. Sage Fulcher Sage Fulcher Hey I'm Sage! Im a Boston area software engineer who grew up in South Florida. Ive worked at a ton of cool places like a telehealth kidney care startup that took part in a billion dollar merger (Cricket health/Interwell health), a boutique design agency where I got to work on a ton of exciting startups including a photography education app, a collegiate Esports league and more (Philosophie), a data analytics as a service startup in Cambridge (MA) as well as at Phillips and MIT Lincoln Lab where I designed and developed novel network security visualizations and analytics. I've been writing code and furiously devoted to using computers to make people’s lives easier for about 17 years. My degree is in making computers make pretty lights and sounds. Outside of work I love hip hop, the Celtics, professional wrestling, magic the gathering, photography, drumming, and guitars (both making and playing them) Rudra Bhikadiya Rudra Bhikadiya I build and fix web apps across Next.js, Node.js, and DBs. Comfortable jumping into messy code, broken APIs, and mysterious bugs. If your project works in theory but not in reality, I help close that gap. Bastien Labelle Bastien Labelle Full stack dev w/ 20+ years of experience Matthew Jordan Matthew Jordan I've been working at a large software company named Kainos for 2 years, and mainly specialise in Platform Engineering. I regularly enjoy working on software products outside of work, and I'm a huge fan of game development using Unity. I personally enjoy Python & C# in my spare time, but I also specialise in multiple different platform-related technologies from my day job. Yovel Cohen Yovel Cohen I got a lot of experience in building Long-horizon AI Agents in production, Backend apps that scale to millions of users and frontend knowledge as well. Matthew Butler Matthew Butler Systems Development Engineer @ Amazon Web Services Franck Plazanet Franck Plazanet I am a Strategic Engineering Leader with over 8 years of experience building high-availability enterprise systems and scaling high-performing technical teams. My focus is on bridging the gap between complex technology and business growth. Core Expertise: 🚀 Leadership: Managing and coaching teams of 15+ engineers, fostering a culture of accountability and continuous improvement. 🏗️ Architecture: Enterprise Core Systems, Multi-system Integration (ERP/API/ETL), and Core Database Structure. ☁️ Cloud & Scale: AWS Expert; architected systems handling 10B+ monthly requests and managing 100k+ SKUs. 📈 Business Impact: Aligning tech strategy with P&L goals to drive $70k+ in monthly recurring revenue. I thrive on "out-of-the-box" thinking to solve complex technical bottlenecks and am always looking for ways to use automation to improve business productivity. David Olverson David Olverson Solo dev shipping production apps with AI-assisted development. I specialize in rescuing broken Lovable/Bolt/Cursor builds and taking them to production. 10+ apps shipped including SaaS CRMs, gaming platforms, real estate tools, and Discord bots. Stack: Next.js 16, TypeScript, Tailwind CSS, FastAPI, PostgreSQL, Prisma. I use Claude Code with 50+ custom skills for rapid delivery. Average turnaround: 2-4 weeks from broken prototype to production.

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help

Frequently Asked Questions

Why can't I see the buttons at the bottom of my Base44 modal on mobile?

The modal height exceeds the phone's screen height and the content isn't scrollable. Add max-height: 90vh and overflow-y: auto to the modal, or make buttons sticky at the bottom of the modal.

Should I use modals at all on mobile?

For simple confirmations, modals are fine. For forms with multiple fields, consider navigating to a full-page form on mobile instead of using a modal. This gives users more space and avoids keyboard issues.

Related Base44 Issues

Can't fix it yourself?
Real developers can help.

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help