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.

Kingsley Omage Kingsley Omage Fullstack software engineer passionate about AI Agents, blockchain, LLMs. 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. Stanislav Prigodich Stanislav Prigodich 15+ years building iOS and web apps at startups and enterprise companies. I want to use that experience to help builders ship real products - when something breaks, I'm here to fix it. Mehdi Ben Haddou Mehdi Ben Haddou - Founder of Chessigma (1M+ users) & many small projects - ex Founding Engineer @Uplane (YC F25) - ex Software Engineer @Amazon and @Booking.com 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. Jared Hasson Jared Hasson Full time lead founding dev at a cyber security saas startup, with 10 yoe and a bachelor's in CS. Building & debugging software products is what I've spent my time on for forever Matt Butler Matt Butler Software Engineer @ AWS Victor Denisov Victor Denisov Developer zipking zipking I am a technologist and product builder dedicated to creating high-impact solutions at the intersection of AI and specialized markets. Currently, I am focused on PropScan (EstateGuard), an AI-driven SaaS platform tailored for the Japanese real estate industry, and exploring the potential of Archify. As an INFJ-T, I approach development with a "systems-thinking" mindset—balancing technical precision with a deep understanding of user needs. I particularly enjoy the challenge of architecting Vertical AI SaaS and optimizing Small Language Models (SLMs) to solve specific, real-world business problems. Whether I'm in a CTO-level leadership role or hands-on with the code, I thrive on building tools that turn complex data into actionable value. AUXLE AUXLE I am a Full Stack Developer experienced in building Websites, Web apps and Cross Platform Mobile Apps for Startups and Companies.

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