Jeremy
Jeremy

Reputation: 46420

Can I use bootstrap with the Mudblazor controls?

My apps all use bootstrap 5 css framework, and I'd rather not change that. If I want to use MudBlazor can I get away from materialize and still use bootstrap?

Upvotes: 8

Views: 2296

Answers (1)

Suryateja KONDLA
Suryateja KONDLA

Reputation: 1601

Yes, you can use Bootstrap with MudBlazor controls add bootstap cdn link into index.cshtm; or index.html

<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">

Upvotes: 0

Related Questions