// This file is a part of Grid - Copyright (c) 2017 Vladimír Macháček
// For the full copyright and license information, please view the file license.md
// that was distributed with this source code.

@mixin justifyContentComponent

	.#{$breakpointPrefix}content
		&-left
			@include justifyContent(flex-start, left)

		&-right
			@include justifyContent(flex-end, right)

		&-centered
			@include justifyContent(center, centered)

		&-wrapped
			@include justifyContent(space-around, wrapped)

		&-apart
			@include justifyContent(space-between, apart)
