Sha256: fb418e6408cf04b62874cc0635ecc7d0b588d919f413d43c1e75888c8389047a

Contents?: true

Size: 492 Bytes

Versions: 3

Compression:

Stored size: 492 Bytes

Contents

@mixin clearfix {
  &:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
  }
}

@mixin box-sizing($value: border-box) {
  -moz-box-sizing: $value;
  -webkit-box-sizing: $value;
  -o-box-sizing: $value;
  -ms-box-sizing: $value;
  box-sizing: $value;
}

@mixin border-colors($top, $sides, $bottom) {
  border-color: $sides;
  border-top-color: $top;
  border-right-color: $sides;
  border-bottom-color: $bottom;
  border-left-color: $sides;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
andrewroth_activeadmin-0.3.4.4 app/assets/stylesheets/active_admin/mixins/_utilities.scss
andrewroth_activeadmin-0.3.4.3 app/assets/stylesheets/active_admin/mixins/_utilities.scss
andrewroth_activeadmin-0.3.4.2 app/assets/stylesheets/active_admin/mixins/_utilities.scss