Web Design Guide 2023-12-11 10:29:21 | 2.0.0

Dummy

<div class="dummy"></div>
<div class="dummy"></div>
/* No context defined for this component. */
  • Content:
    /* Dummy Placeholder Helper */
    
    .dummy {
      @include typography-level('code');
    
      display: flex;
      align-items: center;
      width: 100%;
      height: 100%;
      outline: 1px dotted var(--secondary-color);
      outline-offset: -1px;
      background-color: rgba(var(--secondary-color), 0.2);
      color: var(--secondary-color);
    
      &::before {
        content: 'Dummy Placeholder';
        flex: 1 1 auto;
        padding: $helper-padding;
        overflow: hidden;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }
    
  • URL: /components/raw/helper-dummy/_dummy.scss
  • Filesystem Path: src/components/_example-helpers/dummy/_dummy.scss
  • Size: 513 Bytes

There are no notes for this item.