From 2d023377ce29c3d09bea0d1c92ec98d67dce8463 Mon Sep 17 00:00:00 2001 From: Dmitry S Date: Tue, 6 Oct 2020 10:42:30 -0400 Subject: [PATCH] (core) Fix CustomView css to take full height of widget on all browsers including Safari Summary: On Safari, in particular on mobile, the custom widget was truncated in height. Test Plan: Tested manually on FF, Chrome, Safari (desktop) and Safari, Firefox (mobile) Reviewers: paulfitz Reviewed By: paulfitz Subscribers: paulfitz Differential Revision: https://phab.getgrist.com/D2629 --- app/client/components/CustomView.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/client/components/CustomView.css b/app/client/components/CustomView.css index b199ba04..15e4c04b 100644 --- a/app/client/components/CustomView.css +++ b/app/client/components/CustomView.css @@ -1,6 +1,7 @@ iframe.custom_view { border: none; height: 100%; + flex: auto; } .custom_view_notification {