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

	.#{$breakpointPrefix}self
		&-top
			@include selfAlignment(top, flex-start)

		&-bottom
			@include selfAlignment(bottom, flex-end)

		&-centered
			@include selfAlignment(centered, center)

		&-baseline
			@include selfAlignment(baseline, baseline)

		&-stretched
			@include selfAlignment(stretched, stretch)
