source:
Application/ocrent/wwwroot/lib/bootstrap/scss/mixins/_container.scss
Last change on this file was f5f7c24, checked in by , 17 months ago | |
---|---|
|
|
File size: 410 bytes |
Line | |
---|---|
1 | // Container mixins |
2 | |
3 | @mixin make-container($gutter: $container-padding-x) { |
4 | --#{$prefix}gutter-x: #{$gutter}; |
5 | --#{$prefix}gutter-y: 0; |
6 | width: 100%; |
7 | padding-right: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list |
8 | padding-left: calc(var(--#{$prefix}gutter-x) * .5); // stylelint-disable-line function-disallowed-list |
9 | margin-right: auto; |
10 | margin-left: auto; |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.