-
- {data.chat_video_path &&
- !useUserStore.getState().settings.useNewChatPlayer && (
-
- {isMobile ? (
-
-
-
- ) : (
-
-
-
- )}
+
+ {!isMobile && (
+
+
+
+
-
- )}
- {data.chat_path &&
- useUserStore.getState().settings.useNewChatPlayer && (
-
- {isMobile ? (
-
-
+
+
+ {data.chat_video_path &&
+ !useUserStore.getState().settings.useNewChatPlayer && (
+
- ) : (
-
-
+ )}
+ {data.chat_path &&
+ useUserStore.getState().settings.useNewChatPlayer && (
+
)}
-
- )}
-
-
-
-
+
+
+ )}
+ {isMobile && (
+
+
+
+
+
+
+
+
+ )}
+
)}
{!isFullscreen && }
diff --git a/src/pages/vods/vodId.module.css b/src/pages/vods/vodId.module.css
index 6aa7f19..3b8ba16 100644
--- a/src/pages/vods/vodId.module.css
+++ b/src/pages/vods/vodId.module.css
@@ -24,14 +24,26 @@
}
.container {
display: flex;
- @media (max-width: em(1000px)) {
- flex-wrap: wrap;
- }
+}
+.containerMobile {
+ display: flex;
+ width: 100vw;
}
.leftColumn {
flex-grow: 1;
+ width: calc(100vw - 340px);
+}
+.leftColumnMobile {
+ flex-grow: 1;
+ width: calc(100vw - 200px);
}
.rightColumn {
min-width: 340px;
width: 340px;
-}
\ No newline at end of file
+ max-width: 340px;
+}
+.rightColumnMobile {
+ min-width: 200px;
+ width: 200px;
+ max-width: 200px;
+}