From 6451c370e9d0d7544053e476226ec3945b7c77e9 Mon Sep 17 00:00:00 2001 From: Raj Rawariya <98628762+Raj100@users.noreply.github.com> Date: Tue, 29 Oct 2024 01:00:11 +0530 Subject: [PATCH] fix video resposiveness on level 1 2 and 3 --- main/level_1/phishing_animated_video.html | 5 +++++ main/level_2/phishing_animated_video.html | 5 +++++ main/level_3/phishing_animated_video.html | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/main/level_1/phishing_animated_video.html b/main/level_1/phishing_animated_video.html index 0357973..3a2292f 100644 --- a/main/level_1/phishing_animated_video.html +++ b/main/level_1/phishing_animated_video.html @@ -172,6 +172,11 @@ .fullscreen-button:hover svg { color: #e92e27; } + @media screen and (max-width: 768px) { + .container { + flex-direction: column; + } + } diff --git a/main/level_2/phishing_animated_video.html b/main/level_2/phishing_animated_video.html index 3e45a15..08e728e 100644 --- a/main/level_2/phishing_animated_video.html +++ b/main/level_2/phishing_animated_video.html @@ -174,6 +174,11 @@ .fullscreen-button:hover svg { color: #e92e27; } + @media screen and (max-width: 768px) { + .container { + flex-direction: column; + } + }
diff --git a/main/level_3/phishing_animated_video.html b/main/level_3/phishing_animated_video.html index e9c4acb..64dcf76 100644 --- a/main/level_3/phishing_animated_video.html +++ b/main/level_3/phishing_animated_video.html @@ -182,6 +182,11 @@ .loading { display: none; } + @media screen and (max-width: 768px) { + .container { + flex-direction: column; + } + }