mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
31 lines
547 B
SCSS
31 lines
547 B
SCSS
// Row
|
|
//
|
|
// Rows contain your columns.
|
|
|
|
@if $enable-grid-classes {
|
|
.row {
|
|
@include make-row();
|
|
}
|
|
|
|
// 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;
|
|
|
|
> .col,
|
|
> [class*="col-"] {
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Columns
|
|
//
|
|
// Common styles for small and large grid columns
|
|
|
|
@if $enable-grid-classes {
|
|
@include make-grid-columns();
|
|
}
|