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

	.resizable
		&-none
			resize: none

		@each $resizableLabel in $resizableLabels
			$i: index($resizableLabels, $resizableLabel)
			&-#{$resizableLabel}
				resize: nth($resizableValues, $i)

	.not-resizable
		@extend .resizable-none
