/* No context defined for this component. */
  • Content:
    // Content
    @mixin features-list-content {
      &__heading {
    		@include display(flex);
    		@include align-items(center);
    		@include heading--item;
    
    		@media screen and (max-width: $_quad-layout-breakpoint) {
    			flex-direction: column;
    		}
    	}
    
    	&__img {
        position: absolute;
        top: 2px;
        left: $base-spacing-xlarge / 2;
        transform: translateX(-50%);
        width: 3.4em; // ~44px
        height: 3.4em; // ~44px
    
        @media screen and (max-width: $_quad-layout-breakpoint) {
          position: static;
          margin-bottom: $base-spacing-small;
          transform: translateX(0);
        }
    	}
    
    	&__text {
     		@media screen and (max-width: $_quad-layout-breakpoint) {
          text-align: center;
        }
    	}
    }
    
  • URL: /components/raw/features_list/_features_list.scss
  • Filesystem Path: sass/directives/03_components/features_list/_features_list.scss
  • Size: 689 Bytes
  • Handle: @features_list
  • Preview:
  • Filesystem Path: sass/directives/03_components/features_list/features_list.hbs

There are no notes for this item.