Commit ddb47dfe authored by Lyza Danger Gardner's avatar Lyza Danger Gardner

Make `$base-font-size` reflect reality

The value previously set for `$base-font-size` in `variables` was
`16px`, which is a noble idea, but the only place it’s used is in
`sidebar`, where it was immediately overridden to `12px`. So, in reality,
it’s 12px.
parent 3cb5b868
@use '../variables' as var with (
$base-font-size: 12px,
$base-line-height: 20px
);
@use '../variables' as var;
// Base styles
// -----------
......
......@@ -70,7 +70,7 @@ $sans-font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande',
sans-serif !default;
$mono-font-family: Open Sans Mono, Menlo, DejaVu Sans Mono, monospace !default;
$base-font-size: 16px !default;
$base-font-size: 12px !default;
$base-line-height: 20px !default;
$body1-font-size: 12px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment