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
3 changes: 3 additions & 0 deletions src/components/room/control-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ const ControlBar = () => {

{/* Right Controls */}
<div className="flex items-center gap-2 ">
<span className=" md:hidden">
<End />
</span>
<Chat />
<Users />
<Menu />
Expand Down
2 changes: 1 addition & 1 deletion src/components/room/media-device-dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const MediaDeviceDropdown = ({
<Button
variant="ghost"
size="icon"
className="w-8 h-8 rounded-lg bg-white/5 hover:bg-white/10 text-gray-400 cursor-pointer"
className="w-8 h-8 hidden md:flex rounded-lg bg-white/5 hover:bg-white/10 text-gray-400 cursor-pointer"
>
<MoreVertical className="w-4 h-4" />
</Button>
Expand Down
Loading