Files
IGP-Fan-Reference/Components/Layout/WebsiteTitleComponent.razor
2025-04-27 19:34:50 -04:00

26 lines
422 B
Plaintext

<h1 class="title">
@ChildContent
</h1>
<style>
.title {
padding-top: 35px;
padding-bottom: 5px;
font-size: 1.5rem;
font-weight: bolder;
}
@@media only screen and (max-width: 1025px) {
.title {
padding: 10px;
border: 0px solid black;
}
}
</style>
@code {
[Parameter] public RenderFragment? ChildContent { get; set; }
}