Sha256: 068d7bd94acc7910b7a03cada0c86c36b52a7ee8152ab6d03f5b1c08bf5970a8

Contents?: true

Size: 1.01 KB

Versions: 3

Compression:

Stored size: 1.01 KB

Contents

@import "../variables/spacing";

// *******************************************************************
// Push Utilities
// .push-[xs|sm|md|lg|xl|2xl|3xl]
// .push-[xs|sm|md|lg|xl|2xl|3xl]--top
// .push-[xs|sm|md|lg|xl|2xl|3xl]--right
// .push-[xs|sm|md|lg|xl|2xl|3xl]--bottom
// .push-[xs|sm|md|lg|xl|2xl|3xl]--left
// .push-[xs|sm|md|lg|xl|2xl|3xl]--ends
// .push-[xs|sm|md|lg|xl|2xl|3xl]--sides
// *******************************************************************
@each $scale, $size in $size-map {
  .push-#{$scale} {
    margin: $size !important;
  }

  .push-#{$scale}--top {
    margin-top: $size !important;
  }

  .push-#{$scale}--right {
    margin-right: $size !important;
  }

  .push-#{$scale}--bottom {
    margin-bottom: $size !important;
  }

  .push-#{$scale}--left {
    margin-left: $size !important;
  }

  .push-#{$scale}--ends {
    margin-top: $size !important;
    margin-bottom: $size !important;
  }

  .push-#{$scale}--sides {
    margin-right: $size !important;
    margin-left: $size !important;
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sass-zero-1.0.26 app/assets/stylesheets/sass-zero/utilities/push.scss
sass-zero-1.0.25 app/assets/stylesheets/sass-zero/utilities/push.scss
sass-zero-1.0.24 app/assets/stylesheets/sass-zero/utilities/push.scss