No matter what I do, the width does not change. The position works (e.g. Right, Center), but I cannot get the width to respond.
I have tried with and without "px" (e.g. 500 vs. 500px), etc.
Here is one example:
<div class="row">
<div class="col-12">
<SfToast @ref="UmbrellaFundCreatedToast"
Title="Fund Created"
Content="@m_fundCreatedName"
Timeout="5000"
Width="500" >
<ToastPosition X="@ToastPosition"></ToastPosition>
</SfToast>
</div>
</div>
What I am doing wrong?
Thank you in advance!