This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-07-28 13:35:53 +00:00
|
|
|
// Center block
|
|
|
|
@mixin center-block {
|
2014-08-13 16:38:51 +00:00
|
|
|
display: block;
|
2015-01-11 19:23:26 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2014-07-28 13:35:53 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 13:21:13 +00:00
|
|
|
// Column width with margin
|
|
|
|
@mixin column-width($numberColumns: 3) {
|
2020-04-05 20:49:27 +00:00
|
|
|
width: map-get($columns, $numberColumns) - ( ( $columns__margin * ( $numberColumns - 1 ) ) / $numberColumns );
|
2017-08-30 11:03:53 +00:00
|
|
|
}
|