Skip to content

Commit

Permalink
Merge pull request #556 from shiguredo/feature/fix-video-overlay-z-index
Browse files Browse the repository at this point in the history
オーバーレイ表示の z-index を調整する
  • Loading branch information
tnamao committed Jun 19, 2024
2 parents aa50216 + b96fdfe commit a0ce2a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@

## develop

- [FIX] 映像のオーバーレイ表示の `z-index` を調整する
- @tnamao
- [FIX] LocalVideo の overflow-y を hidden に設定し RemoteVideo とスタイルを揃える
- @tnamao

## 2024.1.4

**2024-06-17**
Expand Down
2 changes: 1 addition & 1 deletion src/components/Video/LocalVideo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const VideoBox: React.FC = () => {
<>
<div className="d-flex">
<div
className={`position-relative d-flex flex-nowrap align-items-start video-wrapper${
className={`position-relative d-flex flex-nowrap align-items-start video-wrapper overflow-y-hidden${
focused ? ' spotlight-focused' : ''
}`}
>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_app.css
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ video {
background-color: rgba(0, 0, 0, 0.3);
border-radius: 0.5rem;
color: white;
z-index: 1055;
z-index: 999;
}

.video-overlay .table-video-capabilities {
Expand Down

0 comments on commit a0ce2a7

Please sign in to comment.