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
fix: fullscreen for Firefox
Signed-off-by: Gary Kim <[email protected]>
  • Loading branch information
gary-kim committed Jun 2, 2021
commit 6feea35d2548d1bfc23098c83955c4333d6accae
4 changes: 2 additions & 2 deletions js/viewer-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/viewer-main.js.map

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion src/components/Videos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ video {
}

::v-deep {
.plyr:-webkit-full-screen video,
.plyr:-webkit-full-screen video {
height: 100% !important;
width: 100% !important;
}
.plyr:fullscreen video {
height: 100% !important;
width: 100% !important;
Expand Down