Fan website of IMMORTAL: Gates of Pyre.
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.
 
 
 
 

38 lines
682 B

<div class="med_container">
@ChildContent
</div>
<style>
.med_container {
display: flex;
gap: 16px;
flex-direction: column;
width: 50%;
min-width: 1000px;
margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 30px;
}
@@media only screen and (max-width: 1025px) {
.med_container {
width: 99%;
min-width: 350px;
}
}
@@media only screen and (min-width: 1024px) {
.med_container {
margin-top: 50px;
}
}
</style>
@code {
[Parameter] public RenderFragment? ChildContent { get; set; }
}