MOBILE-3320 core: Fix headings css rules

main
Pau Ferrer Ocaña 2021-06-29 12:46:14 +02:00
parent ec2e4962cc
commit cbc32b085b
2 changed files with 7 additions and 7 deletions

View File

@ -284,7 +284,7 @@ core-format-text {
}
core-format-text,
core-format-text .core-format-text-content,
core-rich-text-editor .core-rte-editor {
@include core-headings();

View File

@ -148,22 +148,22 @@
@mixin core-headings() {
h1 {
font-size: 3rem;
font-size: 26px;
}
h2, .item-heading {
font-size: 2.8rem;
font-size: 24px;
}
h3 {
font-size: 2.6rem;
font-size: 22px;
}
h4 {
font-size: 2.2rem;
font-size: 20px;
}
h5 {
font-size: 1.8rem;
font-size: 18px;
}
h6 {
font-size: 1.4rem;
font-size: 16px;
}
}