Skip to content

Commit

Permalink
Fix: Font size default classes. (WordPress#10719)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgefilipecosta authored and antpb committed Oct 26, 2018
1 parent 12deed2 commit 9fc9648
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/block-library/src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,20 @@
font-size: 13px;
}

.has-regular-font-size {
.has-regular-font-size, // not used now, kept because of backward compatibility.
.has-normal-font-size {
font-size: 16px;
}

.has-medium-font-size {
font-size: 20px;
}

.has-large-font-size {
font-size: 36px;
}

.has-larger-font-size {
.has-larger-font-size, // not used now, kept because of backward compatibility.
.has-huge-font-size, {
font-size: 42px;
}

0 comments on commit 9fc9648

Please sign in to comment.