From 9fc96486f3d4f246e242062ce9eced9fa5e3c143 Mon Sep 17 00:00:00 2001 From: Jorge Date: Thu, 18 Oct 2018 10:12:15 +0100 Subject: [PATCH] Fix: Font size default classes. (#10719) --- packages/block-library/src/style.scss | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/block-library/src/style.scss b/packages/block-library/src/style.scss index 8ca793de2c055..fc84d096ccca3 100644 --- a/packages/block-library/src/style.scss +++ b/packages/block-library/src/style.scss @@ -113,7 +113,12 @@ 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; } @@ -121,6 +126,7 @@ 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; }