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.
29 lines
539 B
29 lines
539 B
<div class="content"> |
|
@ChildContent |
|
</div> |
|
|
|
<style> |
|
.content { |
|
display: flex; |
|
flex-direction: column; |
|
flex-wrap: wrap; |
|
gap: 20px; |
|
padding: 20px; |
|
border: 2px solid black; |
|
min-height: 50vh; |
|
padding-bottom: 124px |
|
} |
|
|
|
@@media only screen and (max-width: 1025px) { |
|
.content { |
|
padding: 10px; |
|
border: 0px solid black; |
|
} |
|
} |
|
</style> |
|
|
|
@code { |
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; } = default!; |
|
|
|
} |