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.

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. 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 Krishna Sai Kuncha Krishna Sai Kuncha Experienced Professional Full stack Developer with 8+ years of experience across react, python, js, ts, golang and react-native. Developed inhouse websearch tooling for AI before websearch was solved : ) rayush33 rayush33 JavaScript (React.js, React Native, Node.js) Developer with demonstrated industry experience of 4+ years, actively looking for opportunities to hone my skills as well as help small-scale business owners with solutions to technical problems Simon A. Simon A. I'm a backend developer building APIs, emulators, and interactive game systems. Professionally, I've developed Java/Spring reporting solutions, managed relational and NoSQL databases, and implemented CI/CD workflows. BurnHavoc BurnHavoc Been around fixing other peoples code for 20 years. Matthew Butler Matthew Butler Systems Development Engineer @ Amazon Web Services 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. prajwalfullstack prajwalfullstack Hi Im a full stack developer, a vibe coded MVP to Market ready product, I'm here to help 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.

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