From 0982b33d2b9a02ca49e9c00d71752b889568b206 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 2 Aug 2024 16:02:19 -0600 Subject: [PATCH] Update index.html --- index.html | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 750ac7e..9a59e18 100644 --- a/index.html +++ b/index.html @@ -23,15 +23,16 @@ .map-container { width: 100%; display: flex; - flex-direction: column; + flex-direction: column; /* Change to column for vertical stacking */ + align-items: center; /* Center the iframes horizontally */ flex: 1; - align-items: center; } iframe { - width: 960px; /* 800px + 20% */ - height: 720px; /* 600px + 20% */ + flex: 1; border: none; - margin-bottom: 10px; + height: 55vh; /* Increase height by 10% */ + width: 800px; /* Set fixed width */ + max-width: 100%; /* Ensure it doesn't overflow on smaller screens */ } .buttons { width: 100%; @@ -45,7 +46,7 @@ cursor: pointer; } - +