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

	.container
		@extend .full-width
		@extend .x-centered
		@extend .padding-left-1
		@extend .padding-right-1

		&-medium
			@extend .container
			max-width: #{$mediumBreakpoint}px

		&-large
			@extend .container
			max-width: #{$largeBreakpoint}px

		&-extra-large
			@extend .container
			max-width: #{$extraLargeBreakpoint}px
