diff --git a/src/components/Video/Player.tsx b/src/components/Video/Player.tsx
index 763dad7..e650ed5 100644
--- a/src/components/Video/Player.tsx
+++ b/src/components/Video/Player.tsx
@@ -65,7 +65,6 @@ const Player = (props: any) => {
};
return (
- <>
{
/>
- >
);
};
diff --git a/src/components/Video/translatedAudio.tsx b/src/components/Video/translatedAudio.tsx
index a6f3201..675a315 100644
--- a/src/components/Video/translatedAudio.tsx
+++ b/src/components/Video/translatedAudio.tsx
@@ -28,10 +28,10 @@ const TranslatedAudio = () => {
};
return (
- <>
+
{audio &&
}
- >
+
);
};
diff --git a/src/components/Video/video.css b/src/components/Video/video.css
index 7ac800b..68ebed7 100644
--- a/src/components/Video/video.css
+++ b/src/components/Video/video.css
@@ -63,6 +63,7 @@
.youtube {
display: flex;
+ flex-wrap: wrap;
margin-left: 30px;
justify-content: space-around;
align-items: center;
@@ -87,3 +88,8 @@
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
+
+.youtube iframe {
+ width: 100%;
+ aspect-ratio: 16/9;
+}
\ No newline at end of file