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

	.list
		&-unstyled
			list-style: none

			&-clear
				@extend .list-unstyled
				margin: 0
				padding: 0

		@each $type in $listStyleTypes
			&-#{$type}
				list-style-type: $type

		&-dash
			list-style-type: none

			li::before
				margin-right: 10px
				font-weight: bold
				content: "-"

		@each $listPosition in $listPositions
			&-#{$listPosition}
				list-style-position: $listPosition
