diff --git a/movis/src/components/ZoomCard.tsx b/movis/src/components/ZoomCard.tsx index 3099d92..d4f1359 100644 --- a/movis/src/components/ZoomCard.tsx +++ b/movis/src/components/ZoomCard.tsx @@ -6,11 +6,14 @@ interface IProps { title?: string; children?: React.ReactNode; className?: string; + manualZoomDim?: string; } const ZoomCard: React.FC = (props) => { const [isZoom, setIsZoom] = useState(false); + const { manualZoomDim } = props; + const Header = () => { return (
@@ -33,7 +36,11 @@ const ZoomCard: React.FC = (props) => { {props.children}
-
+
{props.children}
diff --git a/movis/src/pages/compare/index.tsx b/movis/src/pages/compare/index.tsx index 067f767..1f92618 100644 --- a/movis/src/pages/compare/index.tsx +++ b/movis/src/pages/compare/index.tsx @@ -377,6 +377,7 @@ const Compare: NextPage = () => {
@@ -408,7 +409,11 @@ const Compare: NextPage = () => {
- +