From 8c2110d2eb15231bd928d503fecbf475726e0d81 Mon Sep 17 00:00:00 2001 From: Riley Bauer <34456002+rileyjbauer@users.noreply.github.com> Date: Thu, 8 Nov 2018 23:50:28 -0800 Subject: [PATCH] Sets min height and min width of all viewers to 80% when fullscreen (#167) --- frontend/src/components/PlotCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/PlotCard.tsx b/frontend/src/components/PlotCard.tsx index 088f5e55a36..10f3d4f9a75 100644 --- a/frontend/src/components/PlotCard.tsx +++ b/frontend/src/components/PlotCard.tsx @@ -41,8 +41,8 @@ const css = stylesheet({ fullscreenDialog: { alignItems: 'center', justifyContent: 'center', - maxHeight: '80%', - maxWidth: '80%', + minHeight: '80%', + minWidth: '80%', padding: 20, }, fullscreenViewerContainer: {