mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-01-15 23:51:57 +00:00
commit
9e5b670f2b
@ -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>
|
||||
|
@ -1,3 +1,5 @@
|
||||
.tfw-first-row {
|
||||
height: 300px;
|
||||
height: 40vh;
|
||||
}
|
||||
|
||||
.tfw-second-row {}
|
||||
|
@ -29,3 +29,7 @@
|
||||
.logo {
|
||||
animation: heartbeat 1s infinite;
|
||||
}
|
||||
|
||||
.jumbotron {
|
||||
padding: 2vh;
|
||||
}
|
||||
|
@ -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>
|
||||
|
@ -1,6 +1,6 @@
|
||||
.tfw-ace-editor {
|
||||
min-height: 200px;
|
||||
width:100%;
|
||||
height: 80%;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user