Compare commits

..

2 Commits

Author SHA1 Message Date
Brandy Carney
70b5b6b5e5 fix(rtl): use multi direction in order to override the default ltr 2017-06-16 13:10:13 -04:00
Brandy Carney
5094feec89 chore(ionic): release 3.4.1 2017-06-16 12:19:45 -04:00
3 changed files with 15 additions and 5 deletions

View File

@@ -1,3 +1,13 @@
<a name="3.4.1"></a>
## [3.4.1](https://github.com/ionic-team/ionic/compare/v3.4.0...v3.4.1) (2017-06-16)
### Bug Fixes
* **themes:** change default app-direction ([ce92be0](https://github.com/ionic-team/ionic/commit/ce92be0))
<a name="3.4.0"></a>
# [3.4.0](https://github.com/ionic-team/ionic/compare/v3.3.0...v3.4.0) (2017-06-15)
@@ -19,7 +29,7 @@
"@ionic-native/splash-screen": "3.12.1",
"@ionic-native/status-bar": "3.12.1",
"@ionic/storage": "2.0.1",
"ionic-angular": "3.4.0",
"ionic-angular": "3.4.1",
"ionicons": "3.0.0",
"rxjs": "5.4.0",
"sw-toolbox": "3.6.0",

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "ionic2",
"version": "3.4.0",
"version": "3.4.1",
"description": "A powerful framework for building mobile and progressive web apps with JavaScript and Angular",
"keywords": [
"ionic",

View File

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