2013-12-07 20:52:51 -08:00
|
|
|
// Row
|
|
|
|
//
|
2019-07-27 08:30:39 +02:00
|
|
|
// Rows contain your columns.
|
2013-12-07 20:52:51 -08:00
|
|
|
|
2015-08-23 22:13:58 -07:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
.row {
|
|
|
|
@include make-row();
|
|
|
|
}
|
2016-11-26 12:13:15 -08:00
|
|
|
|
|
|
|
// Remove the negative margin from default .row, then the horizontal padding
|
|
|
|
// from all immediate children columns (to prevent runaway style inheritance).
|
|
|
|
.no-gutters {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
|
2016-11-27 23:47:00 -07:00
|
|
|
> .col,
|
2016-11-26 12:13:15 -08:00
|
|
|
> [class*="col-"] {
|
|
|
|
padding-right: 0;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2013-01-15 17:55:14 -08:00
|
|
|
}
|
2013-04-26 23:59:51 -07:00
|
|
|
|
2013-12-07 20:52:51 -08:00
|
|
|
// Columns
|
|
|
|
//
|
2013-04-26 23:59:51 -07:00
|
|
|
// Common styles for small and large grid columns
|
2013-12-07 20:52:51 -08:00
|
|
|
|
2015-08-23 22:13:58 -07:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
@include make-grid-columns();
|
|
|
|
}
|