Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
admin / src / css / app / row-extra.less
Size: Mime:
/* ========================================================================
   Component: row-extra.less
 ========================================================================== */
 

// Different container size to wrap content

.container-sm {
  max-width: @container-sm;
  width: auto;
}
.container-md {
  max-width: @container-md;
  width: auto;
}
.container-lg {
  max-width: @container-lg;
  width: auto;
}

//
// Utilities to manage bootstrap rows and cols 
// with more flexibility
// Use in conjunction with .row
// ---------------------------------------------

// Display a row using table layout
// allows to have vertically aligned elements

.row-table {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
  margin: 0;
  
  > [class*="col-"] {
    display: table-cell;
    float: none;
    table-layout: fixed;
    vertical-align: middle;
  }
}

// Remove padding and collapse columns
.row-flush {
  > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
}