Issue #3212120 by kiran.kadam911, kostyashupenko, tushar_sachdeva, chetanbharambe, ranjith_kumar_k_u, mherchel, aaron.ferris: Blockquote's content font size should be decreased when it is placed into the sidebar in the Olivero theme

merge-requests/1078/head
Lauri Eskola 2021-08-17 17:14:52 +03:00
parent fa0b720ebd
commit 75394d6df6
No known key found for this signature in database
GPG Key ID: 382FC0F5B0DF53F8
2 changed files with 22 additions and 0 deletions

View File

@ -225,3 +225,15 @@
color: #fff;
box-shadow: none;
}
/**
* Decrease font-size for blockquote placed in sidebar region.
*/
@media (min-width: 62.5rem) {
.region--sidebar .text-content blockquote {
font-size: 1.5rem;
line-height: 2.25rem
}
}

View File

@ -143,3 +143,13 @@
}
}
}
/**
* Decrease font-size for blockquote placed in sidebar region.
*/
.region--sidebar .text-content blockquote {
@media (--lg) {
font-size: 24px;
line-height: var(--sp2);
}
}