Conman-123

Results 16 comments of Conman-123

Under the "Other Changes" heading the info about the Snackbar changes could be moved to be under the "Snackbar" heading with the other snackbar related stuff.

Something else to consider is if the user wants to customise the order of these tags, e.g. to ensure their custom CSS/JS is loaded before/after MudBlazor's.

Can you recreate the issue in a try.mudblazor? If not could you provide a full project? It's pretty difficult to help you without this.

This might be due this: https://github.com/MudBlazor/MudBlazor/issues/7774

I have something kinda similar, basically a way to show a snackbar to all users of the site. I have this component: ``` public class NewReleaseNotifier : ComponentBase, IDisposable {...

> For some bizarre reason there is no Width property That's because the image should always scale to take the full width according to the [Material Design guidelines](https://m2.material.io/components/cards#behavior). You'll need...

Looks like for some reason this was implemented using the class `justify-sm-center` (https://github.com/MudBlazor/MudBlazor/commit/852bfbeb999c06cfff0b34edc4b2bbea8564193e). Not sure why they chose this instead of just using `justify-center`. I agree this should be fixed...

My first PR, please let me know if I did anything wrong. Should I add `[ExcludeFromCodeCoverage]` on the obsolete `Add(string)` method? I wasn't sure because some obsolete methods do and...

No problem, I agree this wasn't a great solution but I couldn't think of anything better without a breaking change. I'll give it a go when I get a chance.

@ScarletKuro for v7 we should add the breaking change to remove the silent cast of `string` to `Markupstring`, and have a separate overload that explicitly accepts a `Markupstring`. The fix...