Skip to content
Snippets Groups Projects
Verified Commit 2e8970b7 authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Reformat participant home screen

Reformat join room component
Reformat participant home screen component
Add some basic scss formats
parent 67d6de46
1 merge request!63Resolve "participant home screen - html template"
Pipeline #13102 passed with stage
in 34 seconds
<form> <form>
<mat-form-field class="input-block"> <div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="10px">
<input matInput placeholder="Room-Id" /> <mat-form-field class="input-block">
</mat-form-field> <input matInput #roomId placeholder="Room-Id"/>
<button mat-raised-button color="primary">Join</button> </mat-form-field>
<button mat-fab color="primary" routerLink="room/{{ roomId.value }}">
<mat-icon>send</mat-icon>
</button>
</div>
</form> </form>
<app-join-room></app-join-room> <div fxLayout="column" fxLayoutAlign="start" fxLayoutGap="20px" fxFill>
<app-room-list></app-room-list> <div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="5px">
<app-join-room></app-join-room>
</div>
<div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="5px">
<app-room-list></app-room-list>
</div>
</div>
app-join-room {
max-width: 800px;
}
app-room-list {
width: 100%;
max-width: 800px;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment