Files
Conversion-Test/blazor/Components/Layout/LayoutRowComponent.razor
T
2026-05-29 14:17:46 -04:00

26 lines
443 B
Plaintext

<div class="rowContainer">
@ChildContent
</div>
<style>
.rowContainer {
display: flex;
flex-direction: row;
gap: 30px;
width: 100%;
flex-wrap: wrap;
}
@@media only screen and (max-width: 1025px) {
.rowContainer {
gap: 3px;
flex-direction: column;
}
}
</style>
@code {
[Parameter] public RenderFragment? ChildContent { get; set; }
}