Skip to content

Fix homepage typography example #214

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix homepage typography example
The 'Courier' font has been mistakenly given the 'code' typography in numerous places previously. This fixes yet another occurrence.
![Incorrect, non-working typography example](https://i.imgur.com/Q2iTPqE.png)
↓
![Correct, working typography example](https://i.imgur.com/bNvULXf.png)

Related:
tachyons-css/tachyons#652
#203
  • Loading branch information
brandon-promoonly authored Jan 25, 2021
commit ff3585919e7c47c3b520a9df6d6ad01f64e8c497
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ <h4 class="f6 mb0 mt3">Code</h4>
<p class="code"> a b c d e f g h i j k l m n o p q r s t u v w x y z</p>
<p class="code ttu"> a b c d e f g h i j k l m n o p q r s t u v w x y z</p>
<h4 class="f6 mb0 mt3">Courier</h4>
<p class="code"> a b c d e f g h i j k l m n o p q r s t u v w x y z</p>
<p class="code ttu"> a b c d e f g h i j k l m n o p q r s t u v w x y z</p>
<p class="courier"> a b c d e f g h i j k l m n o p q r s t u v w x y z</p>
<p class="courier ttu"> a b c d e f g h i j k l m n o p q r s t u v w x y z</p>
</div>
<div class="dtc-ns v-mid">
<pre class="ba b--black-05 pa2 overflow-auto">
Expand Down