Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/components/VideoRoom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface VideoRoomProps {

const VideoRoom: React.FC<VideoRoomProps> = ({ roomName, userName, onLeave }) => {
return (
<div className="w-full h-[750px] bg-white/5 border border-white/10 backdrop-blur-2xl rounded-3xl overflow-hidden relative">
<div className="w-full h-[60vh] md:h-[750px] bg-white/5 border border-white/10 backdrop-blur-2xl rounded-3xl overflow-hidden relative flex flex-col">
<JitsiMeeting
domain="meet.jit.si"
roomName={`PeerLearning_${roomName}`}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Sessions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default function Sessions() {
/>

{/* CONTENT */}
<div className="grid lg:grid-cols-3 gap-6">
<div className="flex flex-col lg:grid lg:grid-cols-3 gap-6">
{/* LEFT SIDE */}
<div className="lg:col-span-2">
<div className="flex items-center gap-2 mb-6">
Expand Down
Loading