From 4f4f547a8a921a3fdafc2742b49d2845d5721c4d Mon Sep 17 00:00:00 2001 From: harrysupport Date: Sun, 15 Dec 2024 18:05:17 +0000 Subject: [PATCH] Add files via upload --- index.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/index.html b/index.html index 99a91ef..793650a 100644 --- a/index.html +++ b/index.html @@ -377,6 +377,27 @@ color: red; background-color: rgba(0, 0, 0, 0.1); /* Adds a subtle background highlight */ } + +/* Adjust for small screens */ +@media (max-width: 600px) { + .custom-popup-content { + width: 90%; /* Increase width for smaller devices */ + max-width: none; /* Remove max-width to allow more flexibility */ + } + + .custom-popup-content video { + width: 100%; /* Make the video fill the container */ + height: auto; /* Maintain aspect ratio */ + } +} + +/* Adjust for even smaller screens like iPhones */ +@media (max-width: 400px) { + .custom-popup-content { + width: 95%; /* Even more width for very small devices */ + } +} +