From 161ac5a3565e2bc0884a509ed192ac4499f9811d Mon Sep 17 00:00:00 2001 From: sonalgaud12 Date: Sat, 21 Dec 2024 11:56:53 +0530 Subject: [PATCH 1/2] Added padding to the video image Signed-off-by: sonalgaud12 --- site/src/App.style.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/site/src/App.style.js b/site/src/App.style.js index 0fb51a4..5c33e85 100644 --- a/site/src/App.style.js +++ b/site/src/App.style.js @@ -213,7 +213,10 @@ export const Main = styled.main` section.video { margin: 4rem auto; display: flex; + -webkit-box-pack: center; justify-content: center; + padding: 50px; + } .embedVideo { height: 44vw !important; From c098a75c7b00aed0935179efdcc168147a1a7ecb Mon Sep 17 00:00:00 2001 From: sonalgaud12 Date: Sat, 21 Dec 2024 14:58:45 +0530 Subject: [PATCH 2/2] Remove unnecessary -webkit-box-pack from section.video Signed-off-by: sonalgaud12 --- site/src/App.style.js | 1 - 1 file changed, 1 deletion(-) diff --git a/site/src/App.style.js b/site/src/App.style.js index 5c33e85..2275b06 100644 --- a/site/src/App.style.js +++ b/site/src/App.style.js @@ -213,7 +213,6 @@ export const Main = styled.main` section.video { margin: 4rem auto; display: flex; - -webkit-box-pack: center; justify-content: center; padding: 50px;