Skip to content

Commit

Permalink
Change HTML report to use monospace font on source-code
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaslorentz committed Feb 6, 2018
1 parent 719c553 commit 0a005df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MiniCover/Reports/HtmlReport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protected override void WriteDetailedReport(InstrumentationResult result, IDicti
using (var htmlWriter = (TextWriter)File.CreateText(fileName))
{
htmlWriter.WriteLine("<html>");
htmlWriter.WriteLine("<body style=\"font-family: sans-serif;\">");
htmlWriter.WriteLine("<body style=\"font-family: monospace;\">");

var uncoveredLineNumbers = new HashSet<int>();
var coveredLineNumbers = new HashSet<int>();
Expand Down

0 comments on commit 0a005df

Please sign in to comment.