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

Refine template layout with flex

Add usage of angular flex classes and properties
Use fxFlex to fill all available screen space
Remove old scss properties which are no longer used
parent 7f27c574
Branches
Tags
No related merge requests found
<div class="app-fullscreen">
<div fxLayout="column" fxFill>
<mat-toolbar color="primary">
<mat-toolbar-row>
<span class="app-toolbar-title">
......@@ -7,7 +7,7 @@
<!-- Insert navigation module here -->
</mat-toolbar-row>
</mat-toolbar>
<div fxLayout="row" fxLayoutAlign="start start" fxLayoutGap="20px" class="app-main">
<div fxFlex>
<router-outlet></router-outlet>
</div>
</div>
......
@import '../theme/_variables.scss';
.app-fullscreen {
width: 100%;
height: 100%;
> div {
padding: 10px;
}
}
.app-main {
/* Insert more styles here */
}
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