Skip to content

Commit 0892c89

Browse files
authored
Made borderless configurable for MudHtmlViewer (#21)
1 parent 0d10c53 commit 0892c89

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<div class="html-content-wrapper ql-snow">
2-
<div class="ql-editor">
2+
<div class="ql-editor" style="@(Borderless ? "border:none" : null)">
33
@((MarkupString)Html)
44
</div>
55
</div>
66

77
@code {
88
[Parameter, EditorRequired]
99
public string Html { get; set; } = "";
10+
[Parameter]
11+
public bool Borderless { get; set; } = false;
1012
}

0 commit comments

Comments
 (0)