Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ All notable changes to this project will be documented in this file.
- Optimized release data fetching.
- Optimized list loading.
- Removed fixture length check from test.
- Fixed video overflow.
- Added vitest for frontend unit tests.
- Added BRND to feed source admin dropdown.
- Upgraded to PHP 8.4.
Expand Down
2 changes: 1 addition & 1 deletion assets/shared/templates/video.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function Video({ slide, content, run, slideDone, executionId }) {

return (
<>
<div className="template-video video-container">
<div className="template-video">
<video
width="100%"
height="100%"
Expand Down
8 changes: 3 additions & 5 deletions assets/shared/templates/video/video.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
.template-video {
.video-container {
width: auto;
height: 100%;
overflow: hidden;
}
width: 100%;
height: 100%;
overflow: hidden;

video {
object-fit: cover;
Expand Down
Loading