14 lines
217 B
SCSS
14 lines
217 B
SCSS
$direction: ltr !default;
|
|
|
|
@if $direction != ltr and $direction != rtl {
|
|
$direction: ltr;
|
|
}
|
|
|
|
$direction-start: left;
|
|
$direction-end: right;
|
|
|
|
@if $direction == rtl {
|
|
$direction-start: right;
|
|
$direction-end: left;
|
|
}
|