chanan / BlazorStrap

Bootstrap 4 Components for Blazor Framework
https://blazorstrap.io
The Unlicense
910 stars 156 forks source link

Modal Fade show not working #603

Closed yaju closed 9 months ago

yaju commented 10 months ago

I use library of BlazorStrap ver 5.2.100-Preview3b Background of Modal is not fade out. ModalFade

BlazorStrap ver 5.1.202.51723 is no problem

jbomhold3 commented 9 months ago

Your missing <BSCore> in your layout

yaju commented 9 months ago

Tanks. Background of Modal is fade out

Remove _content/BlazorStrap/blazorStrap.js in _host.cshtml In your MainLayout after @Body add

<article class="content px-4">
    @Body
    <BSCore HasToaster="false" />
</article>