@jsenv/navi 0.12.15 → 0.12.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21891,13 +21891,11 @@ const ViewportManagedByCSSVars = {
21891
21891
  const ViewportLayout = props => {
21892
21892
  return jsx(Box, {
21893
21893
  row: true,
21894
+ width: "100%",
21895
+ height: "100%",
21894
21896
  ...props,
21895
21897
  className: "navi_viewport_layout",
21896
- managedByCSSVars: ViewportManagedByCSSVars,
21897
- minWidth: "max-content",
21898
- minHeight: "max-content",
21899
- width: "100%",
21900
- height: "100%"
21898
+ managedByCSSVars: ViewportManagedByCSSVars
21901
21899
  });
21902
21900
  };
21903
21901