2 * Give logical string for a "classic" placement
3 * @param {String} $placement - top/left/right/bottom/vertical/horizontal/t/r/b/l/v/h/x/y
4 * @return {String} - the logical prop fragment
6 @function logical($placement) {
7 @if $placement == 'top' or $placement == 't' {
11 @if $placement == 'bottom' or $placement == 'b' {
15 @if $placement == 'left' or $placement == 'l' {
16 @return 'inline-start';
19 @if $placement == 'right' or $placement == 'r' {
23 @if $placement == 'horizontal' or $placement == 'h' or $placement == 'x' {
27 @if $placement == 'vertical' or $placement == 'v' or $placement == 'y' {