From 4640b3975dea88bd32b657913377f7fa50128817 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Fri, 11 Jun 2021 13:57:37 +0200 Subject: [PATCH] MOBILE-3320 core: Fix loading format text on ios header --- src/theme/components/format-text.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/theme/components/format-text.scss b/src/theme/components/format-text.scss index 06176a466..cd98501fb 100644 --- a/src/theme/components/format-text.scss +++ b/src/theme/components/format-text.scss @@ -690,3 +690,15 @@ core-rich-text-editor .core-rte-editor { } } } + +// h1 is too big and ugly, reduce size when loading. +ion-header.ios h1 core-format-text { + &.core-format-text-loading { + max-height: 30px; + margin-top: 10px; + } + &.core-format-text-content { + display: block; + margin-top: -10px; + } +}