| Current Path : /home/h/e/l/helpink/www/media/mod_jdsimplecontactform/assets/scss/ |
| Current File : /home/h/e/l/helpink/www/media/mod_jdsimplecontactform/assets/scss/_grid.scss |
// Row
//
// Rows contain and clear the floats of your columns.
@if $enable-grid-classes {
.jdscf-row {
@include make-row();
&,&::before,&::after {
box-sizing: border-box;
}
}
// Remove the negative margin from default .row, then the horizontal padding
// from all immediate children columns (to prevent runaway style inheritance).
.jdscf-no-gutters {
margin-right: 0;
margin-left: 0;
> .jdscf-col,
> [class*="jdscf-col-"] {
padding-right: 0;
padding-left: 0;
}
}
}
// Columns
//
// Common styles for small and large grid columns
@if $enable-grid-classes {
@include make-grid-columns();
}