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 1d02471 commit 30fdf2eCopy full SHA for 30fdf2e
test/UnitTest/Components/CardTest.cs
@@ -14,6 +14,12 @@ public void Header_Ok()
14
{
15
var cut = Context.RenderComponent<Card>(builder => builder.Add(a => a.HeaderTemplate, CreateComponent()));
16
Assert.Contains(Content, cut.Markup);
17
+
18
+ cut.SetParametersAndRender(pb =>
19
+ {
20
+ pb.Add(a => a.HeaderPaddingY, "0.25rem");
21
+ });
22
+ cut.Contains("--bs-card-cap-padding-y: 0.25rem;");
23
}
24
25
[Fact]
0 commit comments