Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Would like to hear some more feedback on this one.
#1591 reduced the base font size from 16px to 14px. Users have complained that this is too small.
Furthermore, this font size reduction was done on
$font-size-base
, when it should have been done on$font-size-root
.This PR unsets
$font-size-base
and changes$font-size-root
to93.75%
. This makes body text 15px (andsmall
text13.125px
), and also (by usingfont-size-root
instead offont-size-base
) results in more Bootstrap-adherent text size proportions.User and Community avatars (the small inline ones on posts) go from a height/width of 18.38px to 19.69px. A very small change but not nothing ¯_(ツ)_/¯
It might be worth considering unsetting
$font-size-root
entirely, so that body text is the browser default of16px
; but15px
might be a happy medium.Screenshots
Screenshots don't really adequately convey this change; best to try it out locally.
Before
After