Add whitespace before line number in grid line

This commit is contained in:
Xidorn Quan 2017-08-21 22:21:51 +10:00
parent 6a1b0d0526
commit afc9323b7c

View file

@ -58,6 +58,7 @@ impl ToCss for GridLine {
}
if let Some(i) = self.line_num {
dest.write_str(" ")?;
i.value().to_css(dest)?;
}