Sha256: 78acdd6a89543c5d56171caa81b3c0d4a0a46d4972a319ef9e3bd2c801704cb4

Contents?: true

Size: 978 Bytes

Versions: 10

Compression:

Stored size: 978 Bytes

Contents

// *******************************************************************
// Push Utilities
// .push-[xs|sm|md|lg|xl]
// .push-[xs|sm|md|lg|xl]--top
// .push-[xs|sm|md|lg|xl]--right
// .push-[xs|sm|md|lg|xl]--bottom
// .push-[xs|sm|md|lg|xl]--left
// .push-[xs|sm|md|lg|xl]--ends
// .push-[xs|sm|md|lg|xl]--sides
// *******************************************************************

@import "../variables/sizing";

@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

10 entries across 10 versions & 1 rubygems

Version Path
sass-zero-1.3.2 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.3.1 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.3.0 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.2.3 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.2.2 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.2.1 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.2.0 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.1.7 app/assets/stylesheets/sass-zero/utilities/_push.scss
sass-zero-1.1.6 app/assets/stylesheets/sass-zero/utilities/push.scss
sass-zero-1.1.5 app/assets/stylesheets/sass-zero/utilities/push.scss