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.

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 Pratik Pratik SWE with 15+ years of experience building and maintaining web apps and extensive BE infrastructure Taufan Taufan I’m a product-focused engineer and tech leader who builds scalable systems and turns ideas into production-ready platforms. Over the past years, I’ve worked across startups and fast-moving teams, leading backend architecture, improving system reliability, and shipping products used by thousands of users. My strength is not just writing code — but connecting product vision, technical execution, and business impact. 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) Basel Issmail Basel Issmail ’m a Senior Full-Stack Developer and Tech Lead with experience designing and building scalable web platforms. I work across the full development lifecycle, from translating business requirements into technical architecture to delivering reliable production systems. My work focuses on modern web technologies, including TypeScript, Angular, Node.js, and cloud-based architectures. I enjoy solving complex technical problems and helping teams turn product ideas and prototypes into working platforms that can grow and scale. In addition to development, I often collaborate closely with product managers, business analysts, designers, and QA teams to ensure that solutions align with both technical and business goals. I enjoy working with startups and product teams where I can contribute both as a hands-on engineer and as a technical partner in designing and delivering impactful software. Nam Tran Nam Tran 10 years as fullstack developer 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. legrab legrab I'll fill this later Omar Faruk Omar Faruk As a Product Engineer at Klasio, I contributed to end-to-end product development, focusing on scalability, performance, and user experience. My work spanned building and refining core features, developing dynamic website templates, integrating secure and reliable payment gateways, and optimizing the overall system architecture. I played a key role in creating a scalable and maintainable platform to support educators and learners globally. I'm enthusiastic about embracing new challenges and making meaningful contributions. 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.

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