1// Shapes 2 3@mixin shape($shape: square, $shape-radius: false) { 4 @if $shape == oval { 5 @include border-radius(1000px); 6 } 7 @else if $shape == circle { 8 @include border-radius(1000px); 9 } 10 @else if $shape == pill-left { 11 @include border-radius(500px 0 0 500px); 12 } 13 @else if $shape == pill-right { 14 @include border-radius(0 500px 500px 0); 15 } 16 @else if $shape-radius != false { 17 @include border-radius($shape-radius); 18 } 19 @else { 20 @include border-radius(0); 21 } 22} 23