fix(themes): use correct default app-direction

This commit is contained in:
Ionitron
2017-07-05 15:08:07 -04:00
parent 5503cd0794
commit 2df495b6e2
4 changed files with 8 additions and 8 deletions

View File

@ -12,7 +12,7 @@
// Global app direction
$app-direction: null !default;
$app-direction: ltr !default;
// Global font path

View File

@ -156,7 +156,7 @@
}
@mixin multi-dir() {
@if $app-direction == null {
@if $app-direction == multi {
$root: #{&};
@at-root [dir="ltr"], [dir="rtl"] {
#{$root} {
@ -169,7 +169,7 @@
}
@mixin rtl() {
@if $app-direction == null {
@if $app-direction == multi {
$root: #{&};
@at-root [dir="rtl"] {
#{$root} {
@ -182,7 +182,7 @@
}
@mixin ltr() {
@if $app-direction == null {
@if $app-direction == multi {
$root: #{&};
@at-root [dir="ltr"] {
#{$root} {

View File

@ -12,7 +12,7 @@
// Global app direction
$app-direction: null !default;
$app-direction: ltr !default;
// Global font path

View File

@ -156,7 +156,7 @@
}
@mixin multi-dir() {
@if $app-direction == null {
@if $app-direction == multi {
$root: #{&};
@at-root [dir="ltr"], [dir="rtl"] {
#{$root} {
@ -169,7 +169,7 @@
}
@mixin rtl() {
@if $app-direction == null {
@if $app-direction == multi {
$root: #{&};
@at-root [dir="rtl"] {
#{$root} {
@ -182,7 +182,7 @@
}
@mixin ltr() {
@if $app-direction == null {
@if $app-direction == multi {
$root: #{&};
@at-root [dir="ltr"] {
#{$root} {