Sha256: 5fd5995951c575e5778f350061135f42f3d86a9f6432926c5ad3b9b428e3e21b

Contents?: true

Size: 817 Bytes

Versions: 2

Compression:

Stored size: 817 Bytes

Contents

// *************************************
//
//   Helpers
//   -> Functions, Mixins, Extends, Animations
//
// *************************************

// -------------------------------------
//   Functions
// -------------------------------------

// -------------------------------------
//   Mixins
// -------------------------------------

// ----- Vertical align ----- //
// -> Centering an element in the middle

@mixin vertical-align {
  @include transform(translateY(-50%));
  position: relative;
  top: 50%;
}

// -------------------------------------
//   Extends
// -------------------------------------

// ----- Horizontal list ----- //

%horizontal-list {
  padding: 0;
  > li { display: inline-block; }
}

// -------------------------------------
//   Animations
// -------------------------------------

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
psique-1.0.1 app/assets/stylesheets/psique/foundation/_helpers.scss
psique-1.0.0 app/assets/stylesheets/psique/foundation/_helpers.scss