UCI
<h3 class="
    title-xxl
    
">Title XXL (h3)</h3>
{{#if isH2}}
<h2 class="
    title-xxl
    {{#if colorLight}}title-xxl_color_light{{/if}}
">{{ text }}</h2>
{{else if isH3}}
<h3 class="
    title-xxl
    {{#if colorLight}}title-xxl_color_light{{/if}}
">{{ text }}</h3>
{{else}}
<h1 class="
    title-xxl
    {{#if colorLight}}title-xxl_color_light{{/if}}
">{{ text }}</h1>
{{/if}}
{
  "text": "Title XXL (h3)",
  "isH3": true
}
  • Content:
    .title-xxl {
        font-family: 'Jornada News Book';
        font-size: 36px;
        font-weight: normal;
        line-height: 46px;
        letter-spacing: 0;
        color: var(--color-text-quaternary);
    
        &_color {
            &_light {
                color: var(--color-text-light);
            }
        }
    }
  • URL: /components/raw/title-xxl/title-xxl.css
  • Filesystem Path: src/01-atoms/title-xxl/title-xxl.css
  • Size: 278 Bytes

No notes defined.