This file contains hidden or 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
| const options = { | |
| appId: "{APPID}", | |
| channel: "demo", | |
| token: "{TOKEN}", | |
| }; |
This file contains hidden or 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
| .holder { | |
| &--options { | |
| display: flex; | |
| justify-content: space-around; | |
| align-items: center; | |
| padding: 1rem 0; | |
| &-option { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; |
This file contains hidden or 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
| .holder { | |
| border-radius: 15px; | |
| background: #00bbf9; | |
| width: 100%; | |
| min-height: 50px; | |
| border: 1px solid #333; | |
| &--video { | |
| position: relative; | |
| overflow: hidden; |
This file contains hidden or 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
| .hidden { | |
| display: none !important; | |
| } |
This file contains hidden or 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
| .container { | |
| display: flex; | |
| width: 100%; | |
| max-width: 800px; | |
| margin: 0 auto; | |
| flex-direction: column; | |
| padding: 1rem; | |
| header { | |
| margin-bottom: 1rem; | |
| font-size: 2rem; |
This file contains hidden or 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
| body { | |
| display: -ms-grid; | |
| display: grid; | |
| place-items: center; | |
| min-height: 100vh; | |
| width: 100%; | |
| background: #f15bb51f; | |
| } |
This file contains hidden or 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
| * { | |
| margin: 0; | |
| padding: 0; | |
| font-family: Roboto, "Helvetica Neue", Arial, sans-serif; | |
| -webkit-box-sizing: border-box; | |
| box-sizing: border-box; | |
| } |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Video Call</title> | |
| <script | |
| src="https://kit.fontawesome.com/c8500fcdd6.js" | |
| crossorigin="anonymous" | |
| ></script> |
This file contains hidden or 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
| import { ChangeDetectionStrategy, Component, ViewChild } from "@angular/core"; | |
| import { ChartService } from "src/app/services/chart.service"; | |
| import { Chart } from "chart.js"; | |
| @Component({ | |
| selector: "app-level-chart", | |
| changeDetection: ChangeDetectionStrategy.OnPush, | |
| templateUrl: "./level-chart.component.html", | |
| }) | |
| export class LevelChartComponent { |
This file contains hidden or 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
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>No-div playground</title> | |
| <meta name="description" content="A cool no-div playground" /> | |
| <meta name="author" content="Daily Dev Tips" /> | |
| <link rel="icon" href="/favicon.ico" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <style> | |
| .container { |