Sha256: 00dac6ce938e171c13a3749be88493f7ea27d76440bb56194fba06ef7ea363a8

Contents?: true

Size: 1009 Bytes

Versions: 19

Compression:

Stored size: 1009 Bytes

Contents

//
// Replicate the styles for Shopify Admin grid.
// --------------------------------------------------

.next-grid {
  display: flex;
  width: calc(100% - 20px);
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 10px;

  &:last-of-type {
    padding-bottom: 10px;
  }
}

.next-grid--no-padding {
  width: 100%;

  &:first-of-type, &:last-of-type {
    padding: 0;
  }

  > .next-grid__cell {
    padding: 0;
  }
}

.next-grid--center-aligned, .next-grid--center-both {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.next-grid--right-aligned {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.next-grid__cell {
  @include flex(1, 1, 0%);
  padding: 10px;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
}

.next-grid__cell--third {
  @include flex(0, 0, 33.333%);
  max-width: 33.333%;
}

.next-grid__cell--no-flex {
  @include flex(0 0 auto);
}

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
disco_app-0.6.4 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.6.5 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.6.6 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.6.7 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.6.8 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.6.9 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.7.0 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.7.1 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.7.2 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.0 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.1 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.2 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.3 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.4 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.5 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.6 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.7 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.8 app/assets/stylesheets/disco_app/disco/_grid.scss
disco_app-0.8.9 app/assets/stylesheets/disco_app/disco/_grid.scss