File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
frontend/src/components/pages Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ export function Content() {
157157 if ( mediaType === "image" ) {
158158 attachment = < img src = { process . env . PUBLIC_URL + "/content" + contentInfo . path } alt = "Uploaded File" />
159159 } else if ( mediaType === "video" ) {
160- attachment = < iframe src = { process . env . PUBLIC_URL + "/content" + contentInfo . path } className = "w-screen lg:max-w-5xl max-w-[90%] aspect-video" title = "Uploaded File" />
160+ attachment = < iframe src = { process . env . PUBLIC_URL + "/content" + contentInfo . path } className = "w-screen lg:max-w-7xl max-w-[90%] aspect-video" title = "Uploaded File" />
161161 } else {
162162 attachment = < iframe src = { process . env . PUBLIC_URL + "/content" + contentInfo . path } className = "w-[82vw] h-[82vh]" title = "Uploaded File" />
163163 }
@@ -177,7 +177,9 @@ export function Content() {
177177 < div >
178178 { contentInfo . body }
179179 </ div >
180- { attachment }
180+ < div className = "flex flex-auto justify-center m-5" >
181+ { attachment }
182+ </ div >
181183 </ div >
182184 ) ;
183185}
You can’t perform that action at this time.
0 commit comments