1 |
- // backgroundPosition
$backgroundPositions: 'bg-bottom' 'bottom','bg-center' 'center','bg-left' 'left','bg-left-bottom' 'left bottom','bg-left-top' 'left top','bg-right' 'right','bg-right-bottom' 'right bottom','bg-right-top' 'right top','bg-top' 'top';
@each $name, $val in $backgroundPositions { .#{$name} {background-position: #{$val};}}
|