unlcms / project-herbie

Drupal 10 implementation at the University of Nebraska–Lincoln
https://cms.unl.edu
GNU General Public License v2.0
5 stars 6 forks source link

Add "Subhead" as option in Text Area components Paragraphs menu #646

Open bcrisler opened 2 months ago

bcrisler commented 2 months ago

Need an additional styling option under the Text Area component's Paragraphs menu: Subhead.

"dcf-d-block dcf-subhead dcf-mb-1 unl-dark-gray"

skoolbus39 commented 2 months ago

If possible, subhead should pair with a heading and be wrapped in a <header>, like so:

Subhead before heading:

<header>
  <p class="unl-light-gray dcf-subhead dcf-bold">Subhead Goes Here</p>
  <h2 class="dcf-mt-0">Tortor Dolor Euismod Cursus Venenatis</h2>
</header>

Subhead after heading:

<header>
  <h2>Tortor Dolor Euismod Cursus Venenatis</h2>
  <p class="unl-light-gray dcf-subhead dcf-bold dcf-mb-5">Subhead Goes Here</p>
</header>