Sha256: 136625382f72e935ae470d05ef8cc8f3f4eb10949d2a376a04a3bc86a14c695d

Contents?: true

Size: 683 Bytes

Versions: 292

Compression:

Stored size: 683 Bytes

Contents

// Row
//
// Rows contain your columns.

:root {
  @each $name, $value in $grid-breakpoints {
    --#{$prefix}breakpoint-#{$name}: #{$value};
  }
}

@if $enable-grid-classes {
  .row {
    @include make-row();

    > * {
      @include make-col-ready();
    }
  }
}

@if $enable-cssgrid {
  .grid {
    display: grid;
    grid-template-rows: repeat(var(--#{$prefix}rows, 1), 1fr);
    grid-template-columns: repeat(var(--#{$prefix}columns, #{$grid-columns}), 1fr);
    gap: var(--#{$prefix}gap, #{$grid-gutter-width});

    @include make-cssgrid();
  }
}


// Columns
//
// Common styles for small and large grid columns

@if $enable-grid-classes {
  @include make-grid-columns();
}

Version data entries

292 entries across 292 versions & 13 rubygems

Version Path
jekyll-theme-centos-2.3.0.beta.100 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.99 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.98 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.97 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.96 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.95 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.94 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.93 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.92 _sass/bootstrap/_grid.scss
jekyll-theme-centos-2.3.0.beta.91 _sass/bootstrap/_grid.scss
paraqeet-0.10.0 _sass/bootstrap/_grid.scss
bootstrap-5.3.0.alpha3 assets/stylesheets/bootstrap/_grid.scss