Skip to content

Commit

Permalink
feat: update text of empty video player
Browse files Browse the repository at this point in the history
  • Loading branch information
iyzana committed Feb 19, 2023
1 parent b149fd7 commit e551a69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/component/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function About() {
<h2>Bookmarklet</h2>
<p>
Drag this button into your bookmark bar to open a vsync room for videos
in any tab:
in any tab
</p>
<p
dangerouslySetInnerHTML={{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/component/Player.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
.empty-player {
display: flex;
align-items: center;
font-size: 2em;
font-size: 1.6em;
justify-content: center;
border-radius: var(--radius);
border: var(--border) solid var(--card);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/component/Player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function Player() {
return (
<div className="aspect-ratio">
{videoUrl === null ? (
<div className="aspect-ratio-inner empty-player">No Video</div>
<div className="aspect-ratio-inner empty-player">No videos in queue</div>
) : (
<div className="aspect-ratio-inner">
{isYoutubeUrl(videoUrl) ? (
Expand Down

0 comments on commit e551a69

Please sign in to comment.