Fix missing style tag around embedded CSS (#4659)

This commit is contained in:
d11n
2023-02-18 12:38:02 +01:00
committed by GitHub
parent 4b2ea0c0c3
commit 5218aa3c43

View File

@@ -31,5 +31,7 @@
}
@if (!string.IsNullOrEmpty(Model.EmbeddedCSS))
{
@Safe.Raw(Model.EmbeddedCSS)
<style>
@Safe.Raw(Model.EmbeddedCSS)
</style>
}