2013-12-08 05:52:51 +01:00
|
|
|
// Row
|
|
|
|
//
|
2019-07-27 08:30:39 +02:00
|
|
|
// Rows contain your columns.
|
2013-12-08 05:52:51 +01:00
|
|
|
|
2015-08-24 07:13:58 +02:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
.row {
|
|
|
|
@include make-row();
|
2019-09-28 16:13:36 +02:00
|
|
|
|
|
|
|
> * {
|
|
|
|
@include make-col-ready();
|
|
|
|
}
|
2015-08-24 07:13:58 +02:00
|
|
|
}
|
2019-09-28 16:13:36 +02:00
|
|
|
}
|
|
|
|
|
2021-06-23 04:51:16 +02:00
|
|
|
@if $enable-cssgrid {
|
|
|
|
.grid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: repeat(var(--#{$variable-prefix}rows, 1), 1fr);
|
|
|
|
grid-template-columns: repeat(var(--#{$variable-prefix}columns, #{$grid-columns}), 1fr);
|
|
|
|
gap: var(--#{$variable-prefix}gap, #{$grid-gutter-width});
|
|
|
|
|
|
|
|
@include make-cssgrid();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-27 08:59:51 +02:00
|
|
|
|
2013-12-08 05:52:51 +01:00
|
|
|
// Columns
|
|
|
|
//
|
2013-04-27 08:59:51 +02:00
|
|
|
// Common styles for small and large grid columns
|
2013-12-08 05:52:51 +01:00
|
|
|
|
2015-08-24 07:13:58 +02:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
@include make-grid-columns();
|
|
|
|
}
|