1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/scss/_grid.scss

23 lines
286 B
SCSS
Raw Normal View History

// Row
//
2019-07-27 02:30:39 -04:00
// Rows contain your columns.
@if $enable-grid-classes {
.row {
@include make-row();
2019-09-28 10:13:36 -04:00
> * {
@include make-col-ready();
}
}
2019-09-28 10:13:36 -04:00
}
// Columns
//
// Common styles for small and large grid columns
@if $enable-grid-classes {
@include make-grid-columns();
}