diff options
author | elioat <elioat@tilde.institute> | 2024-07-03 07:14:52 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-07-03 07:14:52 -0400 |
commit | ac65deb7ac209912f1aecd5b70f5e14bba588bfb (patch) | |
tree | 86fa7db8ed6116ade99c6850e1f408b66bc08d39 | |
parent | 729b918b593618bc0e74b5e98ef6273eb0e52f8c (diff) | |
parent | d1f8fd2475e694ea0de91b0e791a09700bc6e038 (diff) | |
download | tour-ac65deb7ac209912f1aecd5b70f5e14bba588bfb.tar.gz |
Merge branch 'master' of tilde.institute:~/public_repos/tour
-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> |