Reputation: 4129
I compile below code to get a bootstrap panel but no success
@page "/test"
<h3>test</h3>
<div class="panel panel-primary">
<div class="panel-heading">Panel with panel-primary class</div>
<div class="panel-body">Panel Content</div>
</div>
@code {
}
And bootstrap.main.cs is
The wwwroot folder looks like this
Index.html
Upvotes: 0
Views: 2288
Reputation: 273179
Blazor uses Bootstrap 4 and there .panel
was replaced by .card
So the basic version becomes this:
<div class="card text-primary">
<div class="card-header">Panel with panel-primary class</div>
<div class="card-body">Panel Content</div>
</div>
Upvotes: 5
Reputation: 1
add in Index.html Head section
<link href="Bootstrap/bootstrap.mini.css" rel="stylesheet" />
Upvotes: -2