u-hidden-mindesktop
{{#if modifier}} {{modifier}}{{/if}}
{
  "modifier": "u-hidden-mindesktop"
}
  • Content:
    @each $breakpoint, $value in $breakpoints {
    
      .u-hidden-max#{$breakpoint} {
    
        &:empty + .u-hidden-peekaboo::before {
          content: 'πŸ™‰';
        }
    
        @media (max-width: $value - 1px) {
          display: none;
    
          &:empty + .u-hidden-peekaboo::before {
            content: 'πŸ™ˆ';
          }
    
        }
    
      }
    
      .u-hidden-min#{$breakpoint} {
    
        &:empty + .u-hidden-peekaboo::before {
          content: 'πŸ™‰';
        }
    
        @media (min-width: $value) {
          display: none;
    
          &:empty + .u-hidden-peekaboo::before {
            content: 'πŸ™ˆ';
          }
    
        }
    
      }
    
    }
    
  • URL: /components/raw/u-hidden/_u-hidden.scss
  • Filesystem Path: src/scss/01-utilities/u-hidden/_u-hidden.scss
  • Size: 557 Bytes

No notes defined.