Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_container.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f391c220cb1325b2d8311505e5809b9d6f27d53f (plain)
1
2
3
4
5
6
7
8
9
10
11
// Container mixins

@mixin make-container($gutter: $container-padding-x) {
  --bs-gutter-x: #{$gutter};

  width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2); // stylelint-disable-line function-disallowed-list
  padding-left: calc(var(--bs-gutter-x) / 2); // stylelint-disable-line function-disallowed-list
  margin-right: auto;
  margin-left: auto;
}