Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Commit

Permalink
fix: readable line length
Browse files Browse the repository at this point in the history
Bump down `readable-line-length` to `75ch` and also apply to `blockquote` elements

fix #375
  • Loading branch information
Schalk Neethling committed Dec 14, 2020
1 parent 47caeac commit 14ef8c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions sass/mixins/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
}

@mixin blockquote() {
@include readable-line-length();
font-size: $small-medium-font-size-mobile;

@media #{$mq-tablet-and-up} {
Expand Down
2 changes: 1 addition & 1 deletion sass/mixins/_utils.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
@mixin readable-line-length() {
max-width: $max-line-length;
max-width: 80ch;
max-width: 75ch;
}

/*
Expand Down

0 comments on commit 14ef8c8

Please sign in to comment.