fix: use dynamic view height for mobile support (#1014)

This commit is contained in:
Daniel Lautzenheiser
2024-01-02 12:23:09 -05:00
committed by GitHub
parent bf7ebcaed2
commit 94b21424ce
5 changed files with 6 additions and 6 deletions

View File

@ -3,8 +3,8 @@ module.exports = {
theme: {
extend: {
height: {
main: "calc(100vh - 64px)",
"main-mobile": "calc(100vh - 128px)",
main: "calc(100dvh - 64px)",
"main-mobile": "calc(100dvh - 128px)",
"media-library-dialog": "80vh",
"media-card": "240px",
"media-preview-image": "104px",