Merge pull request #5 from avatao-content/bootiful

Bootiful
This commit is contained in:
Bokros Bálint 2018-02-14 13:25:57 +01:00 committed by GitHub
commit 9e5b670f2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 6 deletions

View File

@ -1,11 +1,11 @@
<app-header></app-header>
<div class="container-fluid">
<div class="row">
<div class="row tfw-first-row">
<div class="col-sm"><app-login></app-login></div>
<div class="col-sm-6"><app-webide></app-webide></div>
<div class="col-sm"><app-messages></app-messages></div>
</div>
<div class="row">
<div class="row tfw-second-row">
<div class="col-sm"><app-terminal></app-terminal></div>
</div>
</div>

View File

@ -1,3 +1,5 @@
.tfw-first-row {
height: 300px;
height: 40vh;
}
.tfw-second-row {}

View File

@ -29,3 +29,7 @@
.logo {
animation: heartbeat 1s infinite;
}
.jumbotron {
padding: 2vh;
}

View File

@ -1,6 +1,6 @@
<div>
<ul>
<li *ngFor="let message of messages">
<li *ngFor="let message of messages.reverse()">
<p>
<strong>{{message.originator}}</strong>
<span class="timestamp">{{message.timestamp | date:'yyyy-MM-dd HH:mm:ss'}}</span><br>

View File

@ -1,6 +1,6 @@
.tfw-ace-editor {
min-height: 200px;
width:100%;
height: 80%;
width: 100%;
overflow: auto;
}