- Add Next.js app structure with base configs, linting, and formatting - Implement LiveKit Meet page, types, and utility functions - Add Docker, Compose, and deployment scripts for backend and token server - Provide E2E and smoke test scaffolding with Puppeteer and Playwright helpers - Include CSS modules and global styles for UI - Add postMessage and studio integration utilities - Update package.json with dependencies and scripts for development and testing
17 lines
240 B
CSS
17 lines
240 B
CSS
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
padding: 1rem;
|
|
max-height: min(100%, 100vh);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.detailsSection {
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
.detailsSection > div {
|
|
padding-left: 1rem;
|
|
}
|