generated from tldraw/make-real-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into multiple-rooms
- Loading branch information
Showing
13 changed files
with
142 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
"extends": "next/core-web-vitals", | ||
"rules": { | ||
"@next/next/no-img-element": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,68 @@ | ||
/* Container for the entire conference component */ | ||
.conference-component { | ||
position: relative; | ||
height: 100vh; /* Adjust height as needed */ | ||
height: 100%; /* Adjust height as needed */ | ||
width: 100%; | ||
display: flex; | ||
flex-direction: row; | ||
} | ||
|
||
/* Side pane for conference section */ | ||
.conference-section { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 400px; /* Adjust width as needed */ | ||
padding: 8px; | ||
box-sizing: border-box; | ||
overflow-y: auto; | ||
width: 350px; /* Adjust width as needed */ | ||
height: 100%; | ||
z-index: 2; /* Higher z-index to be on top */ | ||
background-color: var(--surface_default); /* Light background for visibility */ | ||
overflow-y: auto; /* Enable scroll for overflow content */ | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
flex-shrink: 0; | ||
justify-content: space-between; | ||
} | ||
|
||
.live-results-container { | ||
flex-grow: 1; | ||
overflow-y: auto; | ||
position: relative; | ||
width: 100%; | ||
} | ||
|
||
@media screen and (max-width: 1024px) { | ||
.conference-section { | ||
width: 280px; | ||
} | ||
} | ||
|
||
/* Main editor section */ | ||
.editor { | ||
position: absolute; | ||
top: 0; | ||
right: 0; | ||
/* right: 400px; */ | ||
bottom: 0; | ||
z-index: 1; /* Lower z-index to be beneath the side pane */ | ||
/* Additional styling for the editor */ | ||
/* position: absolute; */ | ||
width: 100%; | ||
height: 100%; | ||
overflow: visible; | ||
background-color: var(--white); | ||
overflow: hidden; | ||
overscroll-behavior: none; | ||
touch-action: none; | ||
} | ||
|
||
/* Additional styling for peers container */ | ||
.peers-container { | ||
padding: 10px; | ||
width: 100%; | ||
} | ||
|
||
/* You can add more specific styles here */ | ||
.tlui-navigation-zone { | ||
display: none; | ||
} | ||
|
||
/* 'spin' animation */ | ||
@keyframes spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} |
Oops, something went wrong.