We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 175fd46 commit 6317892Copy full SHA for 6317892
src/BootstrapBlazor/Components/Radio/RadioList.razor.cs
@@ -46,7 +46,8 @@ public partial class RadioList<TValue>
46
.Build();
47
48
private string? GetButtonItemClassString(SelectedItem item) => CssBuilder.Default("btn")
49
- .AddClass($"active bg-{Color.ToDescriptionString()}", CurrentValueAsString == item.Value)
+ .AddClass($"btn-outline-{Color.ToDescriptionString()}")
50
+ .AddClass("active", CurrentValueAsString == item.Value)
51
52
53
/// <summary>
src/BootstrapBlazor/Components/Radio/RadioList.razor.scss
@@ -24,7 +24,6 @@
24
}
25
26
&.btn-group {
27
- border: var(--bs-border-width) solid var(--bs-border-color);
28
display: inline-flex;
29
flex: 0 !important;
30
flex-wrap: nowrap;
0 commit comments