mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-07-02 04:36:24 +00:00
Add barebones console option
This commit is contained in:
1
src/app/console/console.component.html
Normal file
1
src/app/console/console.component.html
Normal file
@ -0,0 +1 @@
|
||||
<textarea class="tfw-console"></textarea>
|
9
src/app/console/console.component.scss
Normal file
9
src/app/console/console.component.scss
Normal file
@ -0,0 +1,9 @@
|
||||
.tfw-console {
|
||||
resize: none;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: black;
|
||||
border: 1px solid black;
|
||||
color: white;
|
||||
padding: 8px;
|
||||
}
|
14
src/app/console/console.component.ts
Normal file
14
src/app/console/console.component.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-console',
|
||||
templateUrl: './console.component.html',
|
||||
styleUrls: ['./console.component.scss']
|
||||
})
|
||||
export class ConsoleComponent implements OnInit {
|
||||
|
||||
constructor() {}
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
Reference in New Issue
Block a user