// 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 flexDirectionComponent

	.#{$breakpointPrefix}direction
		&-row
			@include flexDirection(row)

		&-column
			@include flexDirection(column)

		&-reversed
			&-row
				@include flexDirection(row-reverse, reversed-row)

			&-column
				@include flexDirection(column-reverse, reversed-column)
