diff options
author | elioat <{ID}+{username}@users.noreply.github.com> | 2024-07-01 09:42:58 -0400 |
---|---|---|
committer | elioat <{ID}+{username}@users.noreply.github.com> | 2024-07-01 09:42:58 -0400 |
commit | d1f8fd2475e694ea0de91b0e791a09700bc6e038 (patch) | |
tree | 828160ccf4d214dc7dfb33eeead18af322dd0fef | |
parent | 822824c79ec0da595001c4448ae98d89ea8a4745 (diff) | |
download | tour-d1f8fd2475e694ea0de91b0e791a09700bc6e038.tar.gz |
*
-rw-r--r-- | js/pico-cam/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/pico-cam/index.html b/js/pico-cam/index.html index e2df073..0948b04 100644 --- a/js/pico-cam/index.html +++ b/js/pico-cam/index.html @@ -56,7 +56,7 @@ video, canvas { max-width: 50%; height: auto; /* Maintain aspect ratio */ - flex: 1 1 auto; /* Allows the elements to change size and needed */ + flex: 1 1 auto; /* Allows the elements to change size as needed */ } /* Check if the viewport is taller than it is wide */ @@ -66,8 +66,8 @@ } video, canvas { - max-width: 100%; /* Take full width of the container */ - width: 100%; /* Ensure they don't exceed the container's width */ + max-width: 100%; /* Use the full width of the container */ + width: 100%; /* Make sure they don't exceed the container */ } } </style> |