You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
@if (Entity != null) { |
|
var isVanguard = Entity.VanguardAdded() != null ? " vanguard" : ""; |
|
|
|
<div class="enititiesContainer @isVanguard"> |
|
<EntityHeaderComponent></EntityHeaderComponent> |
|
<div class="entityPartsContainer"> |
|
<EntityVanguardAddedComponent></EntityVanguardAddedComponent> |
|
<EntityInfoComponent></EntityInfoComponent> |
|
<EntityVanguardsComponent></EntityVanguardsComponent> |
|
<EntityProductionComponent></EntityProductionComponent> |
|
<EntityStatsComponent></EntityStatsComponent> |
|
<EntityMechanicsComponent></EntityMechanicsComponent> |
|
<EntityPassivesComponent></EntityPassivesComponent> |
|
<EntityPyreSpellsComponent></EntityPyreSpellsComponent> |
|
<EntityUpgradesComponent></EntityUpgradesComponent> |
|
<EntityWeaponsComponent></EntityWeaponsComponent> |
|
<EntityAbilitiesComponent></EntityAbilitiesComponent> |
|
</div> |
|
</div> |
|
} |
|
|
|
<style> |
|
.enititiesContainer { |
|
margin-bottom: 12px; |
|
width: 100%; |
|
overflow-y: auto; |
|
overflow-x: hidden; |
|
padding: 30px; |
|
display: flex; |
|
flex-wrap: wrap; |
|
|
|
flex-direction: column; |
|
} |
|
|
|
.entityPartsContainer { |
|
display: flex; |
|
flex-direction: column; |
|
flex-wrap: wrap; |
|
width: 100%; |
|
} |
|
|
|
@@media only screen and (max-width: 1025px) { |
|
.enititiesContainer { |
|
padding: 0px; |
|
} |
|
} |
|
</style> |
|
|
|
@code { |
|
[CascadingParameter] |
|
public EntityModel? Entity { get; set; } |
|
|
|
[CascadingParameter] |
|
public string? StyleType { get; set; } |
|
} |