Skip to content
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

Adds sup and sub to titles and subtitles #1343

Merged
merged 3 commits into from
Nov 7, 2017
Merged
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
6 changes: 6 additions & 0 deletions sass/elements/title.sass
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ $title-size: $size-3 !default
$title-weight: $weight-semibold !default
$title-strong-color: inherit !default
$title-strong-weight: inherit !default
$title-sub-size: 75% !default
$title-sup-size: 75% !default

$subtitle-color: $grey-dark !default
$subtitle-size: $size-5 !default
Expand All @@ -17,6 +19,10 @@ $subtitle-strong-weight: $weight-semibold !default
em,
span
font-weight: inherit
sub
font-size: $title-sub-size
sup
font-size: $title-sup-size
.tag
vertical-align: middle

Expand Down