main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
410 bytes
|
Rev | Line | |
---|
[d565449] | 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.