filamentphp / filament

A collection of beautiful full-stack components for Laravel. The perfect starting point for your next app. Using Livewire, Alpine.js and Tailwind CSS.
https://filamentphp.com
MIT License
15.01k stars 2.43k forks source link

Fix footer actions being rendered outside viewport in image editor on mobile devices #12813

Closed rossbearman closed 2 weeks ago

rossbearman commented 2 weeks ago

Description

Currently the footer actions (Cancel, Save, Reset) are rendered outside of the viewport when the FileUpload image editor is used on most mobile devices (inc. latest iOS and Android Chrome).

This is fixed by using 100dvh instead of 100vh/h-screen. Tailwind's h-[100dvh] is used instead of h-dvh to support backwards compatibility for people using custom themes on an older version of Tailwind, as mentioned in this comment.

Visual changes

image

Functional changes