Skip to content

Commit

Permalink
Fix default font size to be 10px instead of accidentally being 1px
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Oct 30, 2018
1 parent 937cc31 commit 71286f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/css_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub(crate) const PT_TO_PX: f32 = 96.0 / 72.0;
// this will be substituted as the default font size
pub(crate) const DEFAULT_FONT_SIZE: StyleFontSize = StyleFontSize(PixelValue {
metric: CssMetric::Px,
number: 10_000,
number: 100_000,
});

/// A parser that can accept a list of items and mappings
Expand Down

0 comments on commit 71286f2

Please sign in to comment.