app.component.html 766 Bytes
Newer Older
Romain DELEAU's avatar
Romain DELEAU committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<div style="display: flex;">
    
    <div style="display: flex; flex-direction: column;" [style.z-index]="4">
        <app-game-educationnal-objective></app-game-educationnal-objective>
        <app-game-context></app-game-context>
    </div>
    
    <div style="display: flex; flex-direction: column;" [style.z-index]="3">
        <app-educational-objective  *ngFor="let i of range(1)" [style.z-index]="-i"></app-educational-objective>
          
        <app-mission-context></app-mission-context>
        
    </div>
    
    <!--<app-educational-objective></app-educational-objective>-->
    
    <app-role [style.z-index]="2" ></app-role>

    <app-task [style.z-index]="1"></app-task>

    <app-annexe-task [style.z-index]="0"></app-annexe-task>
    
Romain DELEAU's avatar
Romain DELEAU committed
23
</div>