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.
25 lines
555 B
25 lines
555 B
<div class="paperDisplay"> |
|
@ChildContent |
|
</div> |
|
|
|
<style> |
|
.paperDisplay { |
|
padding-top: 24px; |
|
padding-left: 24px; |
|
padding-right: 24px; |
|
padding-bottom: 24px; |
|
overflow-y: auto; |
|
overflow-x: hidden; |
|
border: 4px solid var(--paper-border); |
|
background-color: var(--paper); |
|
box-shadow: 0px 6px var(--paper-border); |
|
} |
|
</style> |
|
|
|
@code { |
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; } = default!; |
|
|
|
[Parameter] public string Title { get; set; } = default!; |
|
|
|
} |