<div class="paragraph ">
    <blockquote>
        Blockquote
        <cite>
        <a href="#">
            Quotation source
        </a>
   </cite>
    </blockquote>

</div>
<div class="paragraph {{ class }}">
    {{#if tag }}
        <{{{ tag }}} {{{ attributes }}}>
            {{{ text }}}
        </{{{ tag }}}>
    {{/if}}
    {{#if contentElement }}
        {{ render (component contentElement) contentContext }}
    {{/if}}
</div>
{
  "contentElement": "blockquote"
}
  • Content:
    $paragraph-color      : $color-primary !default;
    $paragraph-font-family: $font-family-base !default;
    $paragraph-font-weight: $font-weight-normal !default;
    $paragraph-line-height: $font-line-height !default;
    $paragraph-font-size  : $font-size-medium !default;
    $paragraph-margin     : 0 0 $spacer--medium 0 !default;
    $paragraph-transition : none !default;
    
    .paragraph {
        color: $paragraph-color;
        font-family: $paragraph-font-family;
        font-weight: $paragraph-font-weight;
        line-height: $paragraph-line-height;
        font-size: $paragraph-font-size;
        margin: $paragraph-margin;
        transition: $paragraph-transition;
    }
    
    p {
        @extend .paragraph;
    }
    
  • URL: /components/raw/paragraph/_paragraph.scss
  • Filesystem Path: build/components/Atoms/typography/paragraph/_paragraph.scss
  • Size: 660 Bytes

There are no notes for this item.