Skip to content

Commit

Permalink
Merge pull request #554 from shiguredo/feature/local-video-spotlight
Browse files Browse the repository at this point in the history
LocalVideo のスポットライトフォーカス時のスタイルを修正する
  • Loading branch information
tnamao authored Jun 17, 2024
2 parents ef91c7a + 204d698 commit cea1f9b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

## develop

- [FIX] LocalVideo のスポットライトフォーカス時の表示を修正する
- CSS クラスの指定が正しくなかった
- @tnamao

## 2024.1.3

**2024-06-17**
Expand Down
4 changes: 2 additions & 2 deletions src/components/Video/LocalVideo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const VideoBox: React.FC = () => {
<>
<div className="d-flex">
<div
className={`position-relative d-flex·flex-nowrap·align-items-start·video-wrapper${
focused ? '·spotlight-focused' : ''
className={`position-relative d-flex flex-nowrap align-items-start video-wrapper${
focused ? ' spotlight-focused' : ''
}`}
>
{mediaStats && localMediaStream && localMediaStream.getVideoTracks().length > 0 && (
Expand Down

0 comments on commit cea1f9b

Please sign in to comment.