Add barebones console option

This commit is contained in:
Kristóf Tóth
2018-05-25 13:33:37 +02:00
parent 58cc7d1889
commit 8fb0fc7cfc
7 changed files with 32 additions and 2 deletions

View File

@ -0,0 +1 @@
<textarea class="tfw-console"></textarea>

View File

@ -0,0 +1,9 @@
.tfw-console {
resize: none;
height: 100%;
width: 100%;
background-color: black;
border: 1px solid black;
color: white;
padding: 8px;
}

View 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() {}
}