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

	.#{$breakpointPrefix}overflow
		&-x
			&-hidden
				overflow-x: hidden

			&-auto
				overflow-x: auto

		&-y
			&-hidden
				overflow-y: hidden

			&-auto
				overflow-y: auto

		&-auto
			@extend .#{$breakpointPrefix}overflow-x-auto, .#{$breakpointPrefix}overflow-y-auto

		&-hidden
			@extend .#{$breakpointPrefix}overflow-x-hidden, .#{$breakpointPrefix}overflow-y-hidden
