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

_container.scss « mixins « bootstrap « sass « assets - github.com/spech66/bootstrap-bp-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee6044d0dd32907ff94f8ed4331499c0b3ee6bf6 (plain)
1
2
3
4
5
6
7
8
9
// Container mixins

@mixin make-container($gutter: $container-padding-x) {
  width: 100%;
  padding-right: var(--#{$variable-prefix}gutter-x, #{$gutter});
  padding-left: var(--#{$variable-prefix}gutter-x, #{$gutter});
  margin-right: auto;
  margin-left: auto;
}