Unverified Commit 227c63a0 authored by Lauri Timmanee's avatar Lauri Timmanee
Browse files

Issue #3212120 by kiran.kadam911, kostyashupenko, tushar_sachdeva,...

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

(cherry picked from commit 75394d6d)
parent d64fb545
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -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
}
  }
+10 −0
Original line number Diff line number Diff line
@@ -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);
  }
}